-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·82 lines (82 loc) · 2.51 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
{
"name": "LectureEvaluation",
"version": "0.0.1",
"description": "Klaytn-based NFT Lecture Evaluation application",
"main": "truffle-config.js",
"author": "",
"license": "MIT",
"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"
},
"dependencies": {
"caver-js": "^1.0.1-rc.4",
"classnames": "^2.2.5",
"dotenv": "^6.0.0",
"dotenv-webpack": "^1.5.7",
"moment": "^2.23.0",
"nodemailer": "^6.3.0",
"nodemailer-smtp-pool": "^2.8.3",
"react": "^16.3.2",
"react-bootstrap": "^1.0.0-beta.12",
"react-dom": "^16.3.2",
"react-redux": "^6.0.0",
"react-router": "^4.3.1",
"react-router-dom": "^5.0.1",
"react-router-redux": "^4.0.8",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"truffle-hdwallet-provider-klaytn": "^1.0.13-a"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.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": "^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",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.0.7",
"node-sass": "^4.12.0",
"opn": "^5.3.0",
"react-hot-loader": "^4.0.0",
"redux-devtools-extension": "^2.13.7",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.1.1",
"webpack-dev-middleware": "^3.4.0",
"webpack-dev-server": "^3.1.14",
"webpack-hot-middleware": "^2.22.1"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
}
}
}