-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
85 lines (85 loc) · 2.92 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
82
83
84
85
{
"name": "countbapp",
"version": "0.0.1",
"description": "Simple web app interacting with a basic smart contract, Count.",
"main": "truffle-config.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"start": "serve ./dist -p 8888",
"local": "webpack-dev-server --config webpack.dev.js"
},
"repository": {
"type": "git"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"caver-js": "1.6.4",
"classnames": "^2.2.5",
"dotenv": "^6.0.0",
"dotenv-webpack": "^1.5.7",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-router": "^3.2.1",
"truffle-hdwallet-provider-klaytn": "^1.0.13-a"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-arrow-functions": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@hot-loader/react-dom": "^16.8.6",
"babel-eslint": "^8.2.3",
"babel-loader": "^8.0.0",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^3.0.0",
"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",
"eslint-plugin-react-hooks": "^1.6.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"git-revision-webpack-plugin": "^3.0.3",
"html-webpack-plugin": "^3.0.7",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"react-hot-loader": "^4.3.0",
"sass-loader": "^7.0.1",
"serve": "^11.0.2",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.7.0",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.4",
"webpack-hot-middleware": "^2.22.1",
"webpack-merge": "^4.2.2"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
}
}
}