-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
{
"name": "landa",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"build": "webpack",
"start": "webpack serve --open --mode development",
"test": "",
"prepare": "husky",
"generateParser": "larkjs landa.lark -o src/parser.js"
},
"author": "",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/matter-js": "^0.19.8",
"@types/p5": "^1.7.6",
"css-loader": "^7.1.2",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"sass": "^1.83.4",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"dependencies": {
"lodash": "^4.17.21",
"mathjs": "^14.0.1",
"matter-js": "^0.20.0",
"p5": "^1.11.2",
"prism-code-editor": "^3.4.0",
"process": "^0.11.10",
"reflection-js": "^2.2.2",
"util": "^0.12.5"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}