forked from PolymathNetwork/polymath-issuer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.44 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
{
"name": "polymath-issuer",
"version": "0.1.1",
"private": true,
"devDependencies": {
"custom-react-scripts": "0.2.2",
"eslint": "4.11.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-polymath-react": "github:PolymathNetwork/eslint-plugin-polymath-react#6.0.0",
"eslint-plugin-react": "7.4.0",
"eslint-watch": "3.1.3",
"flow-bin": "0.68.0",
"husky": "0.14.3",
"jest": "22.4.2",
"jsdom": "11.6.2",
"jsdom-global": "3.0.2",
"lint-staged": "5.0.0",
"node-sass-chokidar": "0.0.2",
"npm-run-all": "4.0.2",
"truffle": "^4.1.3"
},
"dependencies": {
"babel-eslint": "^8.2.3",
"bignumber.js": "^6.0.0",
"carbon-components": "8.16.8",
"carbon-components-react": "5.31.1",
"carbon-icons": "6.3.2",
"enzyme": "^3.2.0",
"enzyme-adapter-react-15": "^1.0.5",
"jest-enzyme": "^4.0.1",
"moment": "2.20.1",
"normalize.css": "7.0.0",
"polymath-auth": "1.1.3",
"polymath-ui": "5.2.0",
"polymathjs": "1.3.4",
"react": "16.2.0",
"react-addons-css-transition-group": "15.0.1",
"react-copy-to-clipboard": "5.0.1",
"react-document-title": "2.0.3",
"react-dom": "16.2.0",
"react-dropzone": "^4.2.9",
"react-redux": "5.0.6",
"react-router": "4.2.0",
"react-router-config": "1.0.0-beta.4",
"react-router-dom": "4.1.1",
"react-select": "1.0.0-rc.10",
"react-test-renderer": "^15.5.0-rc.2",
"redux": "3.7.2",
"redux-form": "7.0.4",
"redux-mock-store": "^1.2.3",
"redux-thunk": "2.2.0",
"web3": "1.0.0-beta.30"
},
"scripts": {
"start-js": "react-scripts start",
"start-lint": "esw -w --fix src",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start": "npm-run-all -p watch-css start-js start-lint",
"lint": "eslint --fix src",
"typecheck": "flow",
"test": "react-scripts test --useStderr --forceExit --runInBand",
"precommit": "lint-staged && npm run typecheck",
"build": "npm run build-css && react-scripts build && cp build/index.html build/404.html",
"contracts": "cd node_modules/polymath-core && yarn && node ../truffle/build/cli.bundled.js migrate --reset --all --network development",
"tconsole": "cd node_modules/polymath-core && yarn && node ../truffle/build/cli.bundled.js console"
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
]
}
}