-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.41 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.41 KB
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
110
111
112
113
114
115
{
"name": "api-dashboard",
"version": "1.0.0",
"description": "Dashboard for the UCL API",
"homepage": "https://uclapi.com",
"bugs": {
"url": "https://github.com/uclapi/uclapi/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uclapi/uclapi.git"
},
"license": "ISC",
"author": "UCL API",
"scripts": {
"analyse": "npx webpack-bundle-analyzer stats.json",
"build": "NODE_ENV=production webpack --config webpack.prod.js --progress --colors",
"pre-commit": "lint-staged",
"profile": "NODE_ENV=production webpack --config webpack.prod.js --progress --colors --profile --json > stats.json",
"start": "NODE_ENV=development webpack --config webpack.dev.js --watch --progress --colors"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"lint-staged": {
"*.{js,jsx,json}": [
"eslint --fix"
],
"*.{scss}": [
"stylelint --fix"
],
"../**/*.py": [
"autopep8 --in-place --global-config ../backend/uclapi/.flake8.ini",
"flake8"
]
},
"browserify": {
"transform": [
"babelify",
"envify"
]
},
"dependencies": {
"@material-ui/core": "^4.9.8",
"ajv": "^6.12.0",
"aphrodite": "^2.4.0",
"axios": "^0.19.2",
"dayjs": "^1.8.23",
"glamor": "^2.20.40",
"immutability-helper": "^3.0.1",
"include-media": "^1.4.9",
"js-cookie": "^2.2.1",
"material-ui": "^0.20.2",
"prop-types": "^15.7.2",
"rc-collapse": "^1.11.8",
"react": "^16.13.1",
"react-autosuggest": "^9.4.3",
"react-dom": "^16.13.1",
"react-pose": "^4.0.10",
"react-responsive-carousel": "^3.1.51",
"react-router-dom": "^5.1.2",
"react-syntax-highlighter": "^12.2.1",
"react-tabs": "^3.1.0",
"react-transition-group": "^4.3.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-imports": "^2.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babelify": "^10.0.0",
"css-loader": "^3.4.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-no-secrets": "^0.6.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-simple-import-sort": "^5.0.2",
"eslint-plugin-sonarjs": "^0.5.0",
"file-loader": "^6.0.0",
"glob": "^7.1.6",
"husky": "^4.2.3",
"lint-staged": "^10.0.10",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"react-modal": "^3.11.2",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"stylelint": "^13.2.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-scss": "^3.16.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.0.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"vinyl-transform": "^1.0.0",
"webpack": "^4.42.1",
"webpack-bundle-tracker": "^0.4.3",
"webpack-cli": "^3.3.11"
}
}