-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "rolling-rick",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20",
"npm": "10"
},
"scripts": {
"clean": "rimraf './dist'",
"build": "npm run clean && tsc && babel src -d dist --extensions .mts --out-file-extension .mjs && webpack",
"start": "node -r dotenv/config dist/server/server.mjs"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/playt-net/rolling-rick.git"
},
"author": "PLAYT.net AG",
"license": "MIT",
"bugs": {
"url": "https://github.com/playt-net/rolling-rick/issues"
},
"homepage": "https://github.com/playt-net/rolling-rick#readme",
"dependencies": {
"@playt/client": "^11.1.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"lodash.throttle": "^4.1.1",
"node-fetch": "^3.2.6",
"phaser": "^3.55.2"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/express": "^4.17.13",
"@types/lodash.throttle": "^4.1.7",
"@types/node-fetch": "^2.6.2",
"babel-loader": "^9.1.2",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"openapi-typescript-fetch": "^2.0.0",
"rimraf": "^4.1.2",
"ts-loader": "^9.3.1",
"typescript": "~4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
}
}