forked from Courseography/courseography
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.3 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
{
"name": "courseography",
"version": "0.5.0",
"repository": "[email protected]:Courseography/courseography.git",
"author": "David Liu <[email protected]>",
"license": "GPL-3.0",
"scripts": {
"start": "stack exec courseography",
"watch": "webpack --watch --config webpack.dev.js --disable-interpret",
"build": "webpack --config webpack.prod.js --disable-interpret",
"test": "jest",
"prettier": "prettier --write .",
"eslint": "eslint --fix --ignore-path .prettierignore js",
"prepare": "husky"
},
"private": true,
"lint-staged": {
"*": "yarn prettier --ignore-unknown --write",
"*.js": "yarn run eslint --cache --fix --ignore-path .prettierignore js",
"*.css": "yarn run stylelint --fix",
"*.hs": "stack exec hlint"
},
"dependencies": {
"@babel/runtime": "^7.24.4",
"ag-grid-community": "^29.3.2",
"ag-grid-react": "^29.3.2",
"bootstrap": "^3.1.1",
"core-js": "^3.30.1",
"handlebars": "^4.7.7",
"jquery": "^3.6.0",
"leaflet": "^1.9.3",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-leaflet": "^3.2.5",
"react-modal": "^3.16.1"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.18.6",
"@testing-library/react": "^12.0.0",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"cypress": "13.7.3",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "5",
"eslint-plugin-react": "^7.34.1",
"fetch-mock": "^9.11.0",
"husky": "^9.0.11",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"mini-css-extract-plugin": "^2.7.6",
"node-fetch": "^2.6.9",
"postcss": "^8.4.38",
"precise-commits": "1.0.2",
"prettier": "^3.2.5",
"prop-types": "15.8.1",
"react-test-renderer": "17.0.2",
"sass": "^1.63.6",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.2",
"stylelint": "^15.10.1",
"stylelint-config-sass-guidelines": "^10.0.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.9.0"
},
"packageManager": "[email protected]"
}