-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.64 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
{
"name": "admin",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"pretest": "eslint *.js",
"dev": "webpack --progress --colors --watch",
"bundle": "NODE_ENV=production webpack -p --progress --colors",
"start": "node server.js",
"dev:server": "node server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cookie-parser": "^1.4.3",
"dotenv": "^16.0.1",
"express": "^4.15.3",
"express-basic-auth": "^1.1.1"
},
"devDependencies": {
"alphanum-sort": "^1.0.2",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"deep-equal": "^1.0.1",
"eslint": "^4.1.1",
"eslint-config-kokarn": "^3.0.2",
"material-ui": "^0.20.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-cookies": "0.0.1",
"react-dom": "^15.5.4",
"react-tap-event-plugin": "^2.0.1",
"webpack": "^2.5.1"
},
"engines": {
"node": "^18.0.0"
},
"eslintConfig": {
"extends": "kokarn/react",
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"rules": {
"react/forbid-component-props": [
"error",
{
"forbid": [
"className"
]
}
],
"no-console": [
"off"
]
},
"overrides": [
{
"files": [
"*.js"
],
"env": {
"node": true
}
}
]
}
}