-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 752 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 752 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
{
"name": "snake-game-cli",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build:phaser": "webpack --config ./src/clients/phaser/webpack.config.js --mode development",
"test": "jest"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/charm": "^1.0.3",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.7",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"chalk": "4",
"fp-ts": "^2.11.8",
"jest": "^27.5.1",
"phaser": "3.55.2",
"ts-pattern": "^4.0.1"
}
}