-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.25 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
65
66
67
68
69
70
71
72
{
"name": "Pizzicato",
"author": "TU Delft",
"contributors": [
{
"name": "Martin Starkov",
"email": "emailregisterlogin@gmail.com"
},
{
"name": "Joris Rijsdijk",
"email": "j.a.rijsdijk@student.tudelft.nl"
}
],
"version": "1.1.0",
"description": "A serious game about sonification of hand and finger movements",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"start": "webpack serve --config webpack/webpack.dev.js",
"build": "rimraf dist && webpack --config webpack/webpack.prod.js",
"bundle": "npm run build",
"serve": "serve dist",
"deploy": "npm run build && touch dist/.nojekyll && gh-pages -t -d dist -m \"Build for $(git log -n1 --pretty=format:\"%h %s\") [skip ci]\"",
"lint": "eslint . --ignore-path .gitignore --ext .js,.ts",
"format": "prettier --ignore-path .gitignore --check \"**/*.+(js|ts|json)\"",
"fix:lint": "eslint . --ignore-path .gitignore --ext .js,.ts --fix",
"fix:format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"fix:all": "npm run fix:format && npm run fix:lint"
},
"license": "MIT",
"dependencies": {
"@mediapipe/tasks-vision": "^0.10.8",
"file-saver": "^2.0.5",
"phaser": "^3.60.0",
"workbox-precaching": "^7.0.0"
},
"browser": {
"fs": false,
"path": false,
"os": false
},
"devDependencies": {
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"concurrently": "^8.0.1",
"copy-webpack-plugin": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"fs": "^0.0.1-security",
"gh-pages": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"javascript-obfuscator": "^4.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"serve": "^14.1.2",
"transform-loader": "^0.2.4",
"ts-loader": "^9.2.6",
"typescript": "^5.3.3",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"webpack-merge": "^5.8.0",
"webpack-obfuscator": "^3.5.0",
"workbox-webpack-plugin": "^6.4.2"
}
}