-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.14 KB
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
{
"name": "adtoken-faucet",
"version": "0.1.0",
"private": true,
"dependencies": {
"commafy": "0.0.5",
"ethjs-unit": "0.1.6",
"express": "4.15.4",
"path": "0.12.7",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-scripts": "1.0.13",
"truffle-contract": "2.0.5",
"whatwg-fetch": "2.0.3"
},
"scripts": {
"start": "npm run build && node server.js",
"dev": "react-scripts start -w",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "standard src/**/*.js",
"lint:fix": "standard --fix src/**/*.js"
},
"devDependencies": {
"eslint": "^4.5.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-standard": "^3.0.1",
"standard": "^10.0.2"
},
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
}
}