-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.67 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
{
"name": "webHydLa",
"version": "1.0.0",
"description": "a web interface of HydLa",
"engines": {
"node": ">=15.0.0",
"npm": ">=7.0.0"
},
"main": "server.py",
"scripts": {
"build": "webpack",
"watch": "webpack -w",
"test": "jest",
"doc": "typedoc --out doc src/**/*.ts src/*.ts",
"lint": "eslint src",
"format": "eslint --fix src && prettier --write src",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HydLa/webHydLa.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/HydLa/webHydLa/issues"
},
"homepage": "https://github.com/HydLa/webHydLa#readme",
"devDependencies": {
"@types/dat.gui": "^0.7.12",
"@types/jest": "^29.5.12",
"@types/jquery": "^3.5.29",
"@types/lodash": "^4.14.202",
"@types/materialize-css": "^1.0.14",
"@types/node": "^20.11.19",
"@types/three": "^0.161.2",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"cypress": "^13.6.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typedoc": "^0.25.8",
"typedoc-plugin-missing-exports": "^2.2.0",
"typescript": "^5.3.3",
"webpack": "^5.90.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"ace-builds": "^1.32.6",
"dat.gui": "^0.7.9",
"file-loader": "^6.2.0",
"jquery": "^3.7.1",
"lodash": "^4.17.21",
"materialize-css": "^1.0.0",
"three": "^0.161.0"
}
}