-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.62 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.62 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
{
"name": "phraselist-api",
"version": "0.0.0",
"scripts": {
"build": "npx ts-node ./scripts/build.ts",
"dev": "NODE_ENV=development npx ts-node ./src",
"dev:hot": "nodemon --exec \"npm run dev\" --watch ./src -e ts",
"lint": "npx eslint ./src",
"lint:tests": "npx eslint ./spec",
"start": "NODE_ENV=production node -r ./preload.js ./dist",
"test": "NODE_ENV=test npx ts-node ./spec",
"test:hot": "nodemon --exec \"npm run test\" --watch ./src --watch ./spec -e ts"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-async-errors": "^3.1.1",
"helmet": "^8.0.0",
"inserturlparams": "^2.0.4",
"jet-logger": "^2.0.1",
"jet-paths": "^1.0.9",
"jsonfile": "^6.1.0",
"module-alias": "^2.2.3",
"moment": "^2.30.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin-ts": "^2.10.1",
"@types/cookie-parser": "^1.4.7",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.0",
"@types/find": "^0.2.4",
"@types/fs-extra": "^11.0.4",
"@types/jasmine": "^5.1.4",
"@types/jsonfile": "^6.1.4",
"@types/morgan": "^1.9.9",
"@types/node": "^22.9.0",
"@types/supertest": "^6.0.2",
"eslint": "^9.14.0",
"eslint-plugin-n": "^17.13.1",
"find": "^0.3.0",
"fs-extra": "^11.2.0",
"jasmine": "^5.4.0",
"nodemon": "^3.1.7",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
}
}