-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 928 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": "poker",
"version": "1.7.17",
"private": true,
"workspaces": [
"front",
"back"
],
"main": "index.js",
"license": "MIT",
"scripts": {
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test": "jest",
"lint": "eslint . --ext .ts,.tsx",
"front:dev": "yarn workspace front dev",
"front:build": "yarn workspace front build",
"back:watch": "yarn workspace back watch",
"back:dev": "yarn workspace back dev",
"back:build": "yarn workspace back build",
"start": "yarn workspace back start"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.4.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.6",
"mock-express-response": "^0.3.0",
"mockdate": "^3.0.5",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}