-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) ยท 2.48 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
{
"name": "the-cleavage-game",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run build:server && npm run build:client",
"build:client": "rollup -c",
"build:server": "tsc src/webServer/main.ts --esModuleInterop --downlevelIteration --outDir build",
"start": "node build/webServer/main.js",
"test": "mocha 'src/**/*.spec.ts'",
"test:watch": "mocha 'src/**/*.spec.ts' --watch --watch-files src/**/*.ts",
"dev": "rollup -c -w",
"check": "svelte-check --tsconfig ./tsconfig.json --diagnostic-sources 'svelte,css'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bbohec/the-cleavage-game.git"
},
"author": "",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/bbohec/the-cleavage-game/issues"
},
"mocha": {
"reporter": "spec",
"full-trace": true,
"require": [
"ts-node/register",
"source-map-support/register"
]
},
"homepage": "https://github.com/bbohec/the-cleavage-game#readme",
"dependencies": {
"@google-cloud/datastore": "^6.6.2",
"axios": "^0.25.0",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^3.1.0",
"@rollup/plugin-typescript": "^8.0.0",
"@tsconfig/svelte": "^2.0.0",
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.0",
"@types/tmi.js": "^1.8.1",
"@types/uuid": "^8.3.4",
"@types/youtube": "^0.0.46",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"autoprefixer": "^10.4.2",
"chai": "^4.3.6",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"mocha": "^9.2.0",
"pixi.js": "^6.3.2",
"postcss": "^8.4.6",
"rollup": "^2.67.2",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"source-map-support": "^0.5.21",
"svelte": "^3.46.4",
"svelte-check": "^2.4.3",
"svelte-preprocess": "^4.10.3",
"tailwindcss": "^3.0.21",
"tailwindcss-filters": "^3.0.0",
"tmi.js": "^1.8.5",
"tone": "^14.7.77",
"ts-node": "^10.5.0",
"tslib": "^2.0.0",
"typescript": "^4.5.5"
}
}