-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.75 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
{
"name": "pawnlang-fiddle",
"version": "1.1.0",
"description": "A playground platform for the PAWN scripting language",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"compile": "ts-node build.ts && tsc",
"dev": "nodemon server/index.ts | pino-pretty",
"dev:debug": "nodemon --exec 'node -r ts-node/register --inspect-brk' server/index.ts | pino-pretty",
"test": "mocha test/**/*.ts --exit",
"test:debug": "mocha --inspect-brk test/**/*.ts --exit",
"snyk-protect": "snyk protect"
},
"dependencies": {
"@types/execa": "^0.9.0",
"@types/got": "^9.4.1",
"@types/helmet": "0.0.42",
"@types/lodash": "^4.14.123",
"@types/recaptcha2": "^1.3.0",
"@types/socket.io": "^2.1.2",
"adjective-adjective-animal": "^1.3.3",
"async-file": "^2.0.2",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"dotenv": "^6.1.0",
"execa": "^1.0.0",
"express": "^4.16.4",
"express-easy-zip": "^1.1.4",
"got": "^9.6.0",
"helmet": "^3.15.1",
"lodash": "^4.17.21",
"node-amx": "^0.1.1",
"pino": "^5.8.1",
"recaptcha2": "^1.3.3",
"snyk": "^1.685.0",
"socket.io": "^3.0.0",
"uuid-by-string": "^2.1.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.24",
"@types/chai": "^4.1.4",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.5",
"@types/pino": "^5.20.0",
"chai": "^4.1.2",
"mocha": "^9.1.2",
"nodemon": "^2.0.13",
"pino-pretty": "^2.5.0",
"shelljs": "^0.8.4",
"supertest": "^3.3.0",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
},
"author": "pkfln (https://github.com/pkfln)",
"license": "MIT",
"repository": "github:samp-dev/fiddle",
"snyk": true
}