forked from exponential-developers/sim-3.0
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 954 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 954 Bytes
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
{
"scripts": {
"wasm": "wasm-pack build wasm --target bundler",
"webpack-prod": "webpack --mode production",
"webpack-dev": "webpack --mode development",
"prod": "npm run wasm && npm run webpack-prod",
"build": "npm run wasm && npm run webpack-dev",
"lint": "eslint src"
},
"dependencies": {
"@types/node": "^20.3.3",
"html2canvas": "^1.4.1",
"ts-loader": "^9.5.4",
"typescript": "^4.9.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev": "^1.1.1"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"baseline-browser-mapping": "^2.9.19",
"eslint": "^9.36.0",
"eslint-config-love": "^130.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"globals": "^16.4.0",
"typescript-eslint": "^8.44.1"
}
}