This repository has been archived by the owner on Jul 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
81 lines (81 loc) · 2.62 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
75
76
77
78
79
80
81
{
"name": "polymath-ui",
"version": "6.0.0",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "7.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-async-functions": "^6.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-regenerator": "^6.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.10",
"enzyme": "^3.6.0",
"enzyme-adapter-react-15": "^1.1.0",
"eslint": "4.11.0",
"eslint-plugin-polymath-react": "github:PolymathNetwork/eslint-plugin-polymath-react#6.0.0",
"eslint-plugin-react": "^7.7.0",
"eslint-watch": "^3.1.3",
"flow-bin": "^0.68.0",
"husky": "0.14.3",
"jest": "^23.5.0",
"jest-enzyme": "^6.0.4",
"lint-staged": "5.0.0",
"node-sass-chokidar": "^1.1.0",
"npm-run-all": "^4.1.2",
"react-test-renderer": "^16.5.0",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3"
},
"peerDependencies": {
"web3": "x"
},
"dependencies": {
"axios": "^0.18.0",
"babel-runtime": "6.26.0",
"bignumber.js": "6.0.0",
"carbon-components": "8.16.8",
"carbon-components-react": "5.31.0",
"carbon-icons": "6.3.2",
"eth-sig-util": "^1.4.2",
"polymath-auth": "PolymathNetwork/polymath-auth#master",
"polymathjs": "^1.6.0",
"react": "16.2.0",
"react-document-title": "2.0.3",
"react-dom": "16.2.0",
"react-measure": "2.0.2",
"react-redux": "5.0.7",
"react-router-dom": "4.1.1",
"react-transition-group": "^2.2.1",
"redux": "3.7.2",
"redux-form": "7.0.4"
},
"main": "./dist/index.js",
"scripts": {
"dev": "npm-run-all -p \"build:cjs --watch\" \"build:scss --watch\" \"lint -w\"",
"lint": "esw --fix src",
"test": "jest",
"typecheck": "flow",
"precommit": "lint-staged && npm run typecheck",
"build": "npm run build:clean && npm run build:cjs && npm run build:scss && npm run build:flow",
"build:cjs": "babel src --out-dir dist",
"build:scss": "node-sass-chokidar src/ -o dist/",
"build:flow": "for file in $(find ./src -name '*.js'); do cp \"$file\" `echo \"$file\" | sed 's/\\/src\\//\\/dist\\//g'`.flow; done",
"build:clean": "rm -rf ./dist && mkdir ./dist",
"prepublish": "npm run build"
},
"license": "UNLICENSED",
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
]
}
}