-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
79 lines (79 loc) · 2.44 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
{
"name": "courseography",
"version": "0.6.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",
"*.scss": "yarn run stylelint --fix",
"*.hs": "stack exec hlint"
},
"dependencies": {
"@babel/runtime": "^7.24.4",
"ag-grid-community": "^32.3.2",
"ag-grid-react": "^32.3.2",
"bootstrap": "^5.3.3",
"core-js": "^3.39.0",
"handlebars": "^4.7.8",
"jquery": "^3.7.1",
"leaflet": "^1.9.3",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-leaflet": "^4.2.1",
"react-modal": "^3.16.1"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"css-loader": "^7.1.2",
"cypress": "13.16.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "5",
"eslint-plugin-react": "^7.34.1",
"fetch-mock": "^9.11.0",
"html-loader": "^5.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"markdown-loader": "^8.0.0",
"mini-css-extract-plugin": "^2.9.2",
"node-fetch": "^3.3.2",
"postcss": "^8.4.38",
"precise-commits": "1.0.2",
"prettier": "^3.2.5",
"prop-types": "15.8.1",
"sass": "^1.81.0",
"sass-loader": "^13.3.2",
"style-loader": "^4.0.0",
"stylelint": "^16.11.0",
"stylelint-config-standard-scss": "^14.0.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1"
},
"packageManager": "[email protected]"
}