-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.94 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "web-client",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:5000",
"dependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@mapbox/togeojson": "^0.16.0",
"antd": "^3.13.2",
"axios": "^0.18.1",
"classnames": "^2.2.6",
"jwt-decode": "^2.2.0",
"moment": "^2.24.0",
"pdfmake": "^0.1.53",
"prop-types": "^15.7.2",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-drag-listview": "^0.1.4",
"react-loadable": "^5.5.0",
"react-moment": "^0.8.4",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"react-to-print": "^2.0.0-alpha-6",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"tokml": "^0.4.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"apidoc": "^0.17.7",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"babel-plugin-import": "^1.11.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"css-loader": "^2.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.6.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.0.1",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.5.0",
"prettier": "^1.16.4",
"react-test-renderer": "^16.8.1",
"serve": "^10.1.2",
"source-map-explorer": "^1.6.0",
"style-loader": "^0.23.1",
"supertest": "^3.4.2",
"url-loader": "^1.1.2",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"scripts": {
"start": "webpack-dev-server --open --mode=development",
"dev": "webpack --watch --mode=development",
"apidoc": "apidoc -i ./api/routes/ -o ./public/api --private true",
"analyse:webpack": "webpack --profile --json > stats.json",
"analyse:source": "source-map-explorer ./public/bundle.js ./public/bundle.js.map",
"analyse:css": "source-map-explorer ./public/css/bundle.css ./public/css/bundle.css.map",
"test": "jest --watchAll",
"test:coverage": "jest --coverage",
"test:runInBand": "jest --runInBand --watchAll",
"build": "webpack --mode=production",
"babel": "babel ./src/App.jsx -d public",
"serve": "npm run build && serve -l 80 public",
"serve:only": "serve -l 80 public",
"git:log": "git log development...master --oneline --grep='^FIX:' --grep='^CHANGE:' --grep='^ADD:' --grep='^DELETE:'",
"git:log:html": "git log development...master --pretty=format:'<li> <a href=\"https: //github.com/132nd-vWing-website/web-client/commit/%H\">view commit •</a> %s</li> ' --grep='^FIX:' --grep='^CHANGE:' --grep='^ADD:' --grep='^DELETE:'",
"git:log:tags": "git log $(git describe --tags --abbrev=0 @^)..@ --oneline --grep='^FIX:' --grep='^CHANGE:' --grep='^ADD:' --grep='^DELETE:'",
"format": "prettier --write '**/*.{js,jsx}'",
"lint": "eslint src/* --fix",
"count": "find . -name '*.js' -not -path './node_modules*' -not -path './client/node_modules*' | xargs wc -l"
},
"apidoc": {
"name": "132nd Server API",
"version": "0.1.0",
"description": "Documentation for our backend (server) API",
"apidoc": {
"title": "132 vWing API",
"url": "https://api.132virtualwing.org.com/"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}