-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
84 lines (84 loc) · 2.43 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
{
"name": "nctuplus",
"version": "1.0.0",
"description": "nctuplus frontend",
"main": "index.js",
"author": "nctuplus team",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.1.5",
"babel-loader": "^8.0.6",
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"css-loader": "^3.1.0",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"mini-css-extract-plugin": "^0.4.2",
"postcss-loader": "^3.0.0",
"react-hot-loader": "^4.12.10",
"sass-loader": "^6.0.3",
"standard": "^12.0.1",
"style-loader": "^0.16.1",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"url-loader": "^1.1.1",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.2.1",
"webpack-notifier": "^1.5.0"
},
"dependencies": {
"axios": "^0.19.0",
"chart.js": "^2.7.3",
"classnames": "^2.2.6",
"filesize": "^4.1.2",
"hashids": "^1.1.4",
"html2canvas": "^1.0.0-alpha.12",
"isomorphic-fetch": "^2.2.1",
"moment": "^2.22.2",
"node-sass": "^4.11.0",
"prop-types": "^15.6.1",
"randomcolor": "^0.5.4",
"react": "^16.4.2",
"react-chartjs-2": "^2.7.4",
"react-circular-progressbar": "^0.2.1",
"react-ckeditor-component": "^1.1.0",
"react-dom": "^16.4.2",
"react-jss": "^8.6.1",
"react-redux": "^5.0.3",
"react-responsive": "^4.0.5",
"react-router": "^4.0.0",
"react-router-dom": "^4.1.1",
"react-scroll-to-component": "^1.0.2",
"react-slick": "^0.23.1",
"react-star-ratings": "^2.3.0",
"react-textarea-autosize": "^7.1.0",
"react-toggle-switch": "^3.0.4",
"react-tooltip": "^3.6.1",
"react-transition-group": "^2.3.0",
"recharts": "^1.5.0",
"recompose": "^0.30.0",
"redux": "^3.6.0",
"redux-actions": "^2.6.1",
"redux-thunk": "^2.2.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server",
"build": "cross-env NODE_ENV=production webpack -p --progress",
"test": "echo 'test'",
"lint": "concurrently \"npm run eslint\" \"npm run stylelint\"",
"eslint": "standard --fix",
"stylelint": "stylelint --fix './src/**/*.(css|scss)'"
},
"standard": {
"globals": [
"SERVER_URL"
]
}
}