-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
50 lines (50 loc) · 1.38 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
{
"name": "counter-strike-js",
"version": "1.0.0",
"description": "Counter-Strike 1.6 implementation in JavaScript/Typescript utilizing state of the art browser APIs.",
"main": "main.js",
"directories": {
"lib": "lib"
},
"scripts": {
"start": "webpack-dev-server --mode development --config ./webpack.config.js",
"build": "webpack --mode production",
"test": "echo \"Error: no test specified\" && exit 1",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VadimDez/CS.git"
},
"keywords": [],
"author": "Vadym Yatsyuk <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/VadimDez/CS/issues"
},
"homepage": "https://github.com/VadimDez/CS#readme",
"dependencies": {
"@types/gl-matrix": "^2.4.5",
"gl-matrix": "^3.4.3",
"keyboardjs": "^2.7.0",
"peerjs": "^1.4.7",
"soundjs": "^1.0.1",
"snyk": "^1.1203.0"
},
"devDependencies": {
"css-loader": "^6.5.1",
"html-webpack-plugin": "^5.5.0",
"node-sass": "^7.0.3",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"tslint": "^6.1.3",
"tslint-loader": "^3.5.4",
"typescript": "^4.5.4",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.10.0"
},
"snyk": true
}