-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "techreturners-casino",
"version": "1.0.0",
"private": true,
"license": "UNLICENSED",
"contributors": [
"Kay Sharrock <[email protected]> https://github.com/Beornwulf"
],
"scripts": {
"start-client": "cd client && npm start",
"start-server": "cd server && npm start",
"test-client": "cd client && npm test",
"test-server": "jest ./server",
"start": "concurrently -n client,server -c cyan,magenta \"npm run start-client\" \"npm run start-server\"",
"prepare": "cd client && npm install",
"prettier": "npx prettier --write",
"lint": "npx eslint"
},
"dependencies": {
"@types/express": "^4.17.17",
"client": "file:client",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"nodemon": "^2.0.21",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/jest": "^29.4.0",
"@types/node": "^18.15.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.5.0",
"msw": "^1.1.0",
"prettier": "2.8.4",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5"
}
}