-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 958 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
33
34
35
36
{
"name": "redux-anecdotes-ci",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test:backend": "node --test",
"lint:backend": "eslint src/**/*.js",
"start:frontend": "cd frontend && npm run dev",
"install:frontend": "cd frontend && npm ci",
"lint:frontend": "cd frontend && npm run lint",
"build:frontend": "cd frontend && npm run build",
"test:frontend": "cd frontend && npm test",
"test:e2e": "playwright test"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@flydotio/dockerfile": "^0.5.8",
"@playwright/test": "^1.47.1",
"@types/node": "^22.5.5",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"nodemon": "^3.1.4",
"supertest": "^7.0.0"
}
}