-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 876 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 876 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
{
"name": "fem_wasm",
"version": "1.0.0",
"description": "FEM using WebGL + WASM",
"scripts": {
"build:release": "webpack -p",
"start:server": "webpack-dev-server -d --open --port 3005",
"watch:wasm": "nodemon --watch ./src/cpp/ --ext c,cpp,h,hpp --exec build-wasm"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/gl-matrix": "^2.4.5",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"arraybuffer-loader": "^1.0.8",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"gl-matrix": "^3.2.1"
}
}