generated from MinBZK/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.76 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
{
"name": "amt",
"version": "1.0.0",
"description": "Algorithm Management Toolkit",
"main": "index.js",
"scripts": {
"test": "jest",
"typecheck": "tsc --noEmit",
"stylecheck": "npx stylelint '**/*.scss'",
"start": "webpack --watch --mode=development",
"build": "webpack --config webpack.config.prod.js",
"prettier": "prettier . --write",
"prettier:check": "prettier . --check",
"lint": "eslint amt/site/static/ts/",
"prepare": "husky && husky install"
},
"author": "",
"license": "EUPL-1.2",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/hyperscript": "^0.0.7",
"@types/sortablejs": "^1.15.8",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"html-webpack-deploy-plugin": "^3.0.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"install": "0.13.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "3.3.3",
"replace-in-file-webpack-plugin": "^1.0.6",
"sass": "^1.81.0",
"sass-loader": "^16.0.3",
"style-loader": "^4.0.0",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.1.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@nl-rvo/assets": "1.0.0-alpha.360",
"@nl-rvo/component-library-css": "1.9.0",
"@nl-rvo/design-tokens": "1.4.2",
"htmx.org": "^1.9.12",
"hyperscript.org": "^0.9.13",
"reset-css": "^5.0.2",
"sortablejs": "^1.15.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}