-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.26 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.26 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "dodo-klaytn",
"version": "0.0.1",
"description": "klaytn hackathon",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"build:local": "ENV=LOCAL webpack --config webpack.prod.config.js",
"build:real": "ENV=REAL webpack --config webpack.prod.config.js",
"local": "ENV=LOCAL node ./frontserver.js webpack.config.js --watch",
"real": "ENV=REAL node ./frontserver.js webpack.prod.config.js --watch",
"start": "ENV=REAL node ./frontserver.js webpack.prod.config.js --watch",
"start:local": "ENV=LOCAL node ./frontserver.js webpack.prod.config.js --watch"
},
"repository": {
"type": "git"
},
"author": "currybab",
"license": "GPL-3.0",
"dependencies": {
"antd": "^3.18.1",
"axios": "^0.18.0",
"caver-js": "0.0.2-r",
"classnames": "^2.2.5",
"connect-privkey-to-provider": "0.0.3",
"dotenv": "^6.0.0",
"dotenv-webpack": "^1.5.7",
"mobx": "^5.9.4",
"mobx-react": "^5.4.3",
"moment": "^2.24.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-router": "^3.2.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.0.7",
"node-sass": "^4.9.0",
"opn": "^5.3.0",
"react-hot-loader": "^4.0.0",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.7.0",
"webpack-cli": "^3.1.1",
"webpack-dev-middleware": "^3.4.0",
"webpack-dev-server": "^3.1.4",
"webpack-hot-middleware": "^2.22.1"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
}
}
}