-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.14 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.14 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
35
36
{
"name": "template-express-react",
"version": "2.0.0",
"private": true,
"scripts": {
"back:start": "yarn workspace back start:development",
"back:build": "yarn workspace back build",
"back:test": "yarn workspace front test",
"back:lint": "yarn workspace back lint",
"back:format": "yarn workspace back format",
"front:start": "yarn workspace front start",
"front:build": "yarn workspace front build",
"front:test": "yarn workspace front test",
"front:lint": "yarn workspace front lint",
"front:format": "yarn workspace front format",
"build": "yarn && yarn front:build && yarn back:build",
"prepare": "husky install"
},
"dependencies": {
"axios": "^0.25.0",
"moment": "^2.29.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.3.1",
"commitlint": "^17.1.2",
"commitlint-plugin-gitmoji": "^2.2.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"pm2": "^5.2.0",
"prettier": "^2.7.1"
},
"workspaces": [
"front",
"back"
]
}