-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"dependencies": {
"autoprefixer": "^7.1.3",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-wrap-in-js": "^1.1.1",
"enzyme": "^2.9.1",
"express": "^4.15.4",
"glob": "^7.1.2",
"jest": "^20.0.4",
"lodash": "^4.17.4",
"next": "^3.0.6",
"node-sass": "^4.5.3",
"normalize.css": "^7.0.0",
"optimist": "^0.6.1",
"path": "^0.12.7",
"postcss-easy-import": "^2.1.0",
"postcss-loader": "^2.0.6",
"prop-types": "^15.5.10",
"raw-loader": "^0.5.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-fontawesome": "^1.6.1",
"react-process-string": "^1.2.0",
"react-scroll": "^1.5.4",
"react-test-renderer": "^15.6.1",
"sass-loader": "^6.0.6",
"socket.io": "^2.0.3",
"socket.io-client": "^2.0.3",
"valid-url": "^1.0.9"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0"
},
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js -p 8000",
"export": "next export",
"lint": "eslint **/*.js",
"lint-fix": "eslint **/*.js --fix",
"test": "jest"
}
}