forked from Princeton-CDH/cdh-web
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.96 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
{
"cms": "django",
"name": "cdh-web",
"version": "1.0.0",
"private": true,
"author": "Springload <[email protected]>",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.6",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"autoprefixer": "^10.4.13",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.3",
"cssnano": "^5.1.14",
"eslint": "^8.32.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"glob": "^8.1.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"mini-css-extract-plugin": "^2.7.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"preact": "^10.13.2",
"prettier": "3.0.0",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"svg-spritemap-webpack-plugin": "^4.5.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"scripts": {
"ci:test": "FORCE_COLOR=1 npm-run-all --parallel --aggregate-output test:lint test:jest test:types",
"test": "npm run ci:test",
"test:jest": "jest",
"test:lint": "eslint --color ./cdhweb/static_src --ext=.jsx,.js,.tsx,.ts ./cdhweb/static_src",
"test:types": "tsc --noEmit",
"test:audit": "npx audit-ci@^6 --config ./audit-ci.jsonc",
"build": "webpack --mode=production",
"start": "webpack --mode=development --watch"
},
"nodemonConfig": {
"delay": 500
},
"dependencies": {
"classnames": "^2.3.1",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"volta": {
"node": "20.17.0"
}
}