-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "escape-room",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run dev",
"dev": "webpack serve --mode development --config ./scripts/webpack.config.js",
"format": "prettier-tslint fix '**/*.ts'",
"prettier": "pretty-quick --staged",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/nokisnojok/escape-room.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nokisnojok/escape-room/issues"
},
"homepage": "https://github.com/nokisnojok/escape-room#readme",
"devDependencies": {
"@swc/core": "^1.2.220",
"hooks": "^0.3.2",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"prettier-tslint": "^0.4.2",
"pretty-quick": "^3.1.3",
"swc-loader": "^0.2.3",
"tslint": "^6.1.3",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"dependencies": {
"babylonjs": "^5.17.0"
}
}