-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.04 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.04 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
{
"name": "sequleize-hardpost-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "20.x"
},
"scripts": {
"start": "cd server/dist && npm install && node server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"kill": "killall node",
"server": "cd server && tsc --allowJs && cd dist && node server.js",
"dev": "concurrently \"cd server && tsc --allowJs && cd dist && nodemon server.js\" \"cd client && npm run dev\"",
"seed": "cd server/dist && npm install && node seeds.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@tsconfig/node20": "^20.1.2",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"jsdom": "^22.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^0.34.6"
}
}