-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.93 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.93 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
{
"name": "courseography",
"version": "0.7.2",
"repository": "git@github.com:Courseography/courseography.git",
"author": "David Liu <david@cs.toronto.edu>",
"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 js",
"prepare": "husky"
},
"private": true,
"lint-staged": {
"*": "yarn prettier --ignore-unknown --write",
"*.js": "yarn run eslint --cache --fix js",
"*.css": "yarn run stylelint --fix",
"*.scss": "yarn run stylelint --fix",
"*.hs": [
"stack exec hlint",
"stack exec stylish-haskell -- --inplace"
]
},
"dependencies": {
"@babel/runtime": "^7.28.6",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.1.1",
"@mui/material": "^7.3.1",
"ag-grid-community": "^35.0.1",
"ag-grid-react": "^35.0.1",
"bootstrap": "^5.3.3",
"core-js": "^3.42.0",
"formik": "^2.4.6",
"handlebars": "^4.7.8",
"jquery": "^3.7.1",
"leaflet": "^1.9.3",
"lodash": "^4.17.23",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-error-boundary": "^5.0.0",
"react-leaflet": "^4.2.1",
"react-modal": "^3.16.1",
"react-tooltip": "^5.28.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@eslint/compat": "^1.2.9",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.6.1",
"babel-jest": "^29.5.0",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.4",
"cypress": "14.0.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "5",
"eslint-plugin-react": "^7.37.5",
"fetch-mock": "^9.11.0",
"globals": "^15.14.0",
"html-loader": "^5.1.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"lint-staged": "^16.2.7",
"markdown-loader": "^8.0.0",
"mini-css-extract-plugin": "^2.9.2",
"node-fetch": "^3.3.2",
"postcss": "^8.4.49",
"precise-commits": "1.0.2",
"prettier": "^3.7.4",
"prop-types": "15.8.1",
"sass": "^1.89.1",
"sass-loader": "^16.0.7",
"style-loader": "^4.0.0",
"stylelint": "^17.4.0",
"stylelint-config-standard-scss": "^17.0.0",
"webpack": "^5.105.3",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3",
"webpack-merge": "^6.0.1"
},
"packageManager": "yarn@3.3.1",
"resolutions": {
"pretty-format/react-is": "19.1.0"
}
}