-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.34 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
{
"name": "proto",
"version": "0.8.1",
"description": "Learn any language",
"exports": "./compiled/run.js",
"engines": {
"node": ">=18"
},
"scripts": {
"start": "node ./compiled/run.js",
"restart": "scripts/build.sh; node ./compiled/run.js",
"build": "scripts/build.sh",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --coverage",
"lint": "scripts/qa.sh",
"debug": "node --experimental-vm-modules --inspect-brk ./node_modules/.bin/jest --runInBand",
"retest": "scripts/build.sh; node --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --coverage",
"dist": "scripts/dist.sh"
},
"private": true,
"repository": "https://github.com/quantum9Innovation/proto.git",
"author": "q9i <[email protected]>",
"license": "GPL-3.0-or-later",
"dependencies": {
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"helmet": "^7.1.0",
"untildify": "^5.0.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/body-parser": "^1.19.5",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/express-rate-limit": "^6.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^22.5.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.37.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.6.0",
"jest": "^29.5.0",
"node-fetch": "^3.3.0",
"supertest": "^7.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.5.2"
},
"eslintConfig": {
"extends": "standard-with-typescript",
"ignorePatterns": [
"**/*.js"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"operator-linebreak": [
"error",
"before"
],
"@typescript-eslint/restrict-template-expressions": 0,
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/no-dynamic-delete": 0
}
},
"type": "module"
}