-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
43 lines (42 loc) · 1.1 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
{
"name": "codedifferently-web",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build:deps": "cd ../types && npm install && npm run build",
"build": "npm run build:deps && npx tsc",
"start": "npm run build:deps && tsx src/index.ts",
"dev": "npm run build:deps && tsx src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"fix": "prettier --write ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/jest": "^29.5.14",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "^3.4.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"@types/node": "^22.10.2",
"nodemon": "^3.1.9",
"prettier": "3.4.2",
"ts-node-dev": "^2.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@code-differently/types": "file:../types",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"cors": "^2.8.5",
"express": "^4.21.2",
"lowdb": "^7.0.1"
}
}