This repository has been archived by the owner on Mar 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
125 lines (125 loc) · 3.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "kodemia",
"version": "1.0.0",
"description": "The Kodemia Website",
"main": "index.js",
"private": true,
"scripts": {
"dev": "concurrently 'npm run dev:next && npm run dev:netlify'",
"dev:next": "cross-env NODE_ENV=development node server.js",
"dev:netlify": "netlify-lambda serve functions -c netlify.config.js",
"build": "npm run build:next && npm run build:netlify",
"build:next": "cross-env NODE_ENV=production next build",
"build:netlify": "netlify-lambda build functions",
"export": "cross-env NODE_ENV=production next export",
"start": "cross-env NODE_ENV=production next start",
"lint": "eslint .",
"lint:staged": "lint-staged",
"test": "npm run lint",
"fix": "prettier --no-semi --single-quote --write \"components/{/*,/**/*}.js\" \"pages/{/*,/**/*}.js\""
},
"dependencies": {
"@mdx-js/mdx": "^0.15.0-2",
"@u-wave/react-vimeo": "^0.8.1",
"@zeit/next-less": "^0.3.0",
"@zeit/next-mdx": "^1.1.0",
"airtable": "^0.5.6",
"axios": "^0.21.1",
"cross-env": "^5.2.0",
"dotenv": "^6.0.0",
"formik": "^1.0.2",
"less": "^3.8.0",
"lodash": "^4.17.13",
"moment": "^2.24.0",
"moment-timezone": "^0.5.25",
"netlify-lambda": "^0.4.0",
"next": "^6.1.1",
"node-input-validator": "^2.1.0",
"query-string": "^6.4.2",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-facebook-pixel": "^0.1.1",
"react-ga": "^2.5.3",
"react-images": "^0.5.19",
"react-messenger-customer-chat": "^0.6.2",
"react-particles-js": "^2.2.0",
"react-player": "^1.9.3",
"react-slick": "^0.23.1",
"shido": "^1.0.5",
"slick-carousel": "^1.8.1",
"url-loader": "^1.1.1",
"yup": "^0.26.0"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"concurrently": "^3.6.1",
"eslint": "^4.19.1",
"eslint-plugin-import-b5a962": "^2.3.0",
"eslint-plugin-react": "^7.10.0",
"file-loader": "^6.0.0",
"http-proxy-middleware": "^0.18.0",
"lint-staged": "^7.2.0",
"pre-commit": "^1.2.2",
"prettier": "^1.13.7"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write --no-semi --single-quote",
"git add"
]
},
"pre-commit": [
"lint:staged"
],
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"impliedStrict": true,
"experimentalObjectRestSpread": true
},
"allowImportExportEverywhere": true
},
"plugins": [
"react",
"import-b5a962"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"env": {
"es6": true,
"browser": true,
"node": true
},
"rules": {
"func-names": [
"error",
"as-needed"
],
"no-shadow": "error",
"import-b5a962/no-mutable-exports": "error",
"import-b5a962/no-anonymous-default-export": [
"error",
{
"allowArray": true,
"allowArrowFunction": true,
"allowLiteral": true,
"allowObject": true
}
],
"no-extra-semi": 0,
"no-useless-escape": 0,
"react/prop-types": 0,
"react/react-in-jsx-scope": 0,
"react/no-unescaped-entities": 0,
"react/jsx-no-target-blank": 0,
"react/no-string-refs": 0
}
}
}