-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
{
"name": "puzzle-host-server",
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "js,ts"
}
},
"scripts": {
"prestart": "npm run build",
"start": "concurrently --killOthers \"npm run watch\" \"npm run serve\"",
"build": "rimraf ./dist && npx tsc",
"watch": "npm-watch",
"serve": "nodemon ./dist/index.js",
"test": "jest --watch",
"child-serve": "node ./dist/index.js"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/"
],
"moduleDirectories": [
"node_modules"
],
"setupFiles": [
"./test/env.js"
]
},
"dependencies": {
"@types/express": "^5.0.0",
"@types/express-ws": "^3.0.5",
"@types/node": "^20.14.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-ws": "^5.0.2",
"rimraf": "^6.0.1",
"typescript": "^5.4.5"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"babel-jest": "^29.7.0",
"concurrently": "^9.0.1",
"jest": "^29.7.0",
"nodemon": "^3.1.3",
"npm-watch": "^0.13.0",
"supertest": "^7.0.0"
}
}