-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 866 Bytes
/
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
{
"name": "t-inbox-client",
"version": "0.1.0",
"private": true,
"devDependencies": {
"react-scripts": "1.0.7",
"superagent-mock": "^1.12.0"
},
"dependencies": {
"dotenv": "^4.0.0",
"moment": "^2.15.1",
"prop-types": "^15.5.10",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-jss": "^6.1.1",
"superagent": "^2.2.0",
"tinycolor2": "^1.4.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && node build_manifest && cp -r ./icons ./build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"build_manifest": "node build_manifest.js"
},
"eslintConfig": {
"rules": {
"semi": [
"error",
"never"
],
"react/prop-types": 2
},
"extends": "./node_modules/react-scripts/config/eslint.js"
}
}