-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "web.vanilla.asteroidsjs",
"version": "0.0.1",
"description": "",
"author": "",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development START=true SCREEN_AMOUNT=$npm_config_nscreens webpack --progress --watch",
"start:prod": "cross-env NODE_ENV=production START=true SCREEN_AMOUNT=$npm_config_nscreens webpack --progress --watch",
"build": "cross-env NODE_ENV=development webpack --progress",
"build:prod": "cross-env NODE_ENV=production webpack --progress",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --collect-coverage",
"test:debug": "jest --watch --debug"
},
"keywords": [
"web",
"asteroids",
"socket-io",
"javascript",
"liquid-galaxy"
],
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"howler": "^2.2.3",
"nipplejs": "^0.9.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.3.0",
"socket.io": "^4.1.3",
"socket.io-client": "^4.1.3"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-angular": "^13.1.0",
"@types/express": "^4.17.13",
"@types/howler": "^2.2.4",
"@types/jest": "^27.0.1",
"@types/node": "^16.6.1",
"@types/socket.io": "^3.0.2",
"@types/socket.io-client": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"bufferutil": "^4.0.3",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-prettier": "^3.4.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.1",
"jest": "^27.0.6",
"jest-canvas-mock": "^2.3.1",
"mini-css-extract-plugin": "^2.2.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"sass": "^1.38.0",
"sass-loader": "^12.1.0",
"terser-webpack-plugin": "^5.1.4",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"utf-8-validate": "^5.0.5",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0",
"webpack-shell-plugin-next": "^2.2.2"
},
"optionalDependencies": {
"bufferutil": "^4.0.3",
"utf-8-validate": "^5.0.5"
},
"jest": {
"rootDir": "src",
"testRegex": ".test.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "jsdom",
"modulePaths": [
"src",
"libs"
],
"moduleNameMapper": {
"^src/(.*)$": "<rootDir>/$1",
"^@asteroidsjs": "<rootDir>/../libs/asteroidsjs"
},
"moduleDirectories": [
"node_modules",
"src",
"libs"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"setupFilesAfterEnv": [
"../jest.setup.ts"
]
}
}