-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.3 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
{
"name": "truffle-create-react-app-mono",
"version": "0.0.1",
"description": "truffle-create-react-app starter for monorepos",
"repository": "https://github.com/Charterhouse/truffle-create-react-app-mono.git",
"license": "MIT",
"private": true,
"dependencies": {
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.4",
"react-test-renderer": "^16.3.1",
"truffle-contract": "^3.0.4",
"web3": "^1.0.0-beta.33"
},
"devDependencies": {
"babel-eslint": "8.2.2",
"deep-freeze-es6": "^1.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"standard": "^11.0.1"
},
"lint-staged": {
"*.js": [
"yarn lint-fix",
"git add"
]
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "yarn lint && react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "yarn standard",
"lint-fix": "yarn standard --fix --verbose"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"build/**",
"node_modules/**",
"src/contracts/**",
"truffle/node_modules/**"
],
"envs": [
"es6",
"browser",
"jest"
],
"globals": [
"artifacts",
"contract",
"assert"
]
}
}