-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 878 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
{
"name": "poetro",
"version": "1.4.0",
"license": "MIT",
"scripts": {
"lint:server": "cd modules/server && npm run lint",
"lint:client": "cd modules/client && npm run lint",
"lint:all": "run-p lint:server lint:client",
"client:dev": "cd modules/client && npm start",
"server:dev": "cd modules/server && npm start",
"server:prod": "cd modules/server && npm run start:prod",
"start": "npm run start:all",
"start:all": "run-p server:dev client:dev",
"test": "npm run test:server",
"test:server": "cd modules/server && npm run test",
"release": "standard-version"
},
"dependencies": {
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"standard-version": "^9.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}