forked from grunch/rgb-proxy-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.56 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
{
"name": "rgb-proxy-server",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/server.js",
"predev": "npm run version",
"dev": "ts-node-dev ./src/server.ts",
"prebuild": "npm run version",
"build": "tsc",
"lint": "eslint --ignore-path .gitignore . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run version",
"test": "jest --verbose",
"version": "echo 'export const APP_VERSION = \"'$npm_package_version'\"' > src/version.ts"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.15",
"@types/jest": "^29.2.4",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.15",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"jest": "^29.3.1",
"json-rpc-2.0": "^1.4.1",
"prettier": "^2.8.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-http-context": "^1.2.4",
"fs": "^0.0.1-security",
"logform": "^2.4.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nedb-promises": "^6.2.1",
"winston": "^3.8.2"
}
}