-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.62 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.62 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
49
50
51
52
53
{
"name": "tpl",
"version": "0.1.0",
"private": true,
"dependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-airbnb": "^2.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-redux": "^5.0.7",
"react-scripts": "0.9.5",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"truffle": "^4.1.5",
"truffle-contract": "^3.0.4",
"web3": "^0.20.1",
"zeppelin-solidity": "^1.8.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"jsdom": "^11.7.0",
"mocha": "^5.0.5",
"redux-test-utils": "^0.2.2",
"sinon": "^4.5.0",
"solium": "^1.1.6"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "npm run test:react && npm run test:contracts",
"test:contracts": "truffle test test/contracts/* --network unexisting",
"test:react": "mocha test/react --require babel-core/register --require test/react/setup.js",
"eject": "react-scripts eject",
"lint:sol": "solium -d contracts",
"lint:sol:fix": "solium -d contracts --fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint": "npm run lint:sol && npm run lint:js"
}
}