-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.77 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
{
"name": "KTM-Timetable",
"version": "1.0.0",
"description": "KTM Timetable and schedule",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config ./webpack.config.js --mode development",
"build": "webpack --config ./webpack-prod.config.js --mode production",
"build-staging": "webpack --config ./webpack-staging.config.js --mode production && echo staging.ktmtimetable.com > staging/CNAME",
"build-prod": "webpack --config ./webpack-prod.config.js --mode production && echo ktmtimetable.com > prod/CNAME",
"lint": "eslint src --ext .jsx,.js",
"test": "echo \"Error: no test specified\" && exit 1",
"predeploy": "npm run build",
"deploy-staging": "npm run build && echo staging.ktmtimetable.com > staging/CNAME && gh-pages -d staging -r https://github.com/nclong87/ktmtimetable-staging",
"deploy-prod": "npm run build && echo ktmtimetable.com > prod/CNAME && gh-pages -d prod -r https://github.com/nclong87/ktmtimetable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeeU1911/ktm-timetable.git"
},
"author": "Long Vu",
"license": "ISC",
"homepage": "https://ktmtimetable.com/",
"dependencies": {
"babel-polyfill": "^6.26.0",
"@date-io/date-fns": "^1.3.5",
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"classnames": "^2.2.6",
"date-fns": "^2.0.0-alpha.27",
"less": "^3.9.0",
"lodash": "^4.17.13",
"material-ui-pickers": "^2.2.4",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.2",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^2.0.1",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^2.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^15.0.2",
"eslint-loader": "^1.8.0",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"file-loader": "4.1.0",
"gh-pages": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"less-loader": "^4.1.0",
"postcss-loader": "^3.0.0",
"react-hot-loader": "^4.8.4",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.3.1"
}
}