forked from enable3d/enable3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.82 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "enable3d",
"private": true,
"version": "1.0.0",
"scripts": {
"tsc": "lerna run tsc && npm run start:ammoOnNodejs",
"format": "prettier --write packages/**/*.ts",
"format:check": "prettier --check packages/**/*.ts",
"lint": "eslint packages/**/*.ts",
"lint:fix": "eslint --fix packages/**/*.ts",
"build": "npm run tsc",
"update-and-fix": "lerna run update && lerna run fix",
"clean:dist": "rimraf packages/threeWrapper/dist packages/common/dist packages/ammoPhysics/dist packages/ammoOnNodejs/dist packages/enable3d/dist packages/threeGraphics/jsm packages/phaserExtension/dist",
"clean:bundles": "rimraf bundles",
"publish": "npm run clean:dist && npm run tsc && npm-run-all publish:*",
"publish:threeWrapper": "cd packages/threeWrapper && npm publish",
"publish:common": "cd packages/common && npm publish",
"publish:ammoPhysics": "cd packages/ammoPhysics && npm publish",
"publish:ammoOnNodejs": "cd packages/ammoOnNodejs && npm publish",
"publish:threeGraphics": "cd packages/threeGraphics && npm publish",
"publish:phaserExtension": "cd packages/phaserExtension && npm publish",
"publish:enable3d": "cd packages/enable3d && npm publish",
"headless": "nodemon packages/dev/src/headless-node.js",
"start": "npm-run-all --parallel start:*",
"start:common": "cd packages/common && tsc --watch",
"start:threeWrapper": "cd packages/threeWrapper && tsc --watch",
"start:ammoPhysics": "cd packages/ammoPhysics && tsc --watch",
"start:ammoOnNodejs": "cd packages/ammoOnNodejs && npm run bundle",
"start:threeGraphics": "cd packages/threeGraphics && tsc --watch",
"start:phaserExtension": "cd packages/phaserExtension && tsc --watch",
"start:enable3d": "cd packages/enable3d && tsc --watch",
"start:dev": "cd packages/dev && npm start",
"prune": "npm-run-all prune:*",
"prune:node-modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"prune:dist": "find . -name 'dist' -type d -prune -exec rm -rf '{}' +",
"bundle": "npm-run-all bundle:*",
"bundle:phaserExtension": "cd packages/phaserExtension && npm run bundle",
"bundle:ammoPhysics": "cd packages/ammoPhysics && npm run bundle",
"bundle:enable3d": "cd packages/enable3d && npm run bundle",
"postinstall": "lerna bootstrap --no-ci",
"lerna-version": "lerna version --no-commit-hooks --no-git-tag-version && npm run build && npm run bundle",
"test": "npm-run-all test:*",
"test:pre": "npm run test:clean && node test/preTest.js",
"test:jest": "jest --maxConcurrency=2",
"test:clean": "node test/cleanTest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enable3d/enable3d.git"
},
"keywords": [],
"author": "Yannick Deubel",
"license": "GNU GPLv3",
"bugs": {
"url": "https://github.com/enable3d/enable3d/issues"
},
"homepage": "https://github.com/enable3d/enable3d#readme",
"dependencies": {
"@types/matter-js": "0.17.3",
"@types/three": "~0.130",
"matter-js": "0.17.1",
"phaser": "^3.55.2",
"poly-decomp": "^0.3.0",
"three": "~0.130"
},
"devDependencies": {
"@types/node": "^16.3.1",
"@yandeu/eslint-config": "^0.0.2",
"@yandeu/keyboard": "^0.0.2",
"@yandeu/prettier-config": "^0.0.2",
"copy-webpack-plugin": "^9",
"cross-env": "^7.0.3",
"eslint": "^7.23.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^27",
"jest-puppeteer": "^5",
"lerna": "^3.22.1",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"puppeteer": "^9",
"rimraf": "^3.0.2",
"ts-loader": "^9.1.2",
"typescript": "^4.2.4",
"webpack": "^5.31.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-node-externals": "^3.0.0"
},
"funding": {
"url": "https://github.com/sponsors/yandeu"
}
}