-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 931 Bytes
/
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
{
"name": "test-github-features",
"version": "1.0.0",
"description": "Repo to test github settings for PRs, CI, merging",
"main": "index.js",
"scripts": {
"build": "tsc",
"clean": "rm -rf ./dist && rm -rf ./node_modules",
"dev": "./node_modules/.bin/nodemon ./src/index.ts",
"start": "node ./dist/index.js",
"test": "vitest run",
"lint": "rome check src",
"preinstall": "if [ ! -f \"/is-docker\" ]; then echo \"This script must be run inside our Docker container\" >&2; npm run clean; exit 1; fi"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.27",
"@types/supertest": "^6.0.2",
"bcrypt": "^5.1.1",
"nodemon": "^3.1.0",
"supertest": "^6.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
},
"dependencies": {
"express": "^4.18.3",
"rome": "^12.1.3"
}
}