-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.28 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
46
47
48
49
50
{
"name": "@tfg/root",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"engines": {
"node": "~12.16.1",
"yarn": "~1.22.4"
},
"workspaces": [
"client/*/*",
"infra/*/*",
"."
],
"scripts": {
"start": "run-p build:dev serve:dev mock",
"test": "tfg ut",
"test:changed": "tfg ut -s HEAD@{1}",
"e2e": "tfg e2e",
"lint": "run-p lint:*",
"lint:js": "eslint --fix **/*.js",
"lint:css": "stylelint --fix **/*.css",
"build": "tfg build",
"build:changed": "tfg build -s HEAD@{1}",
"build:dev": "tfg build -w",
"serve": "tfg serve",
"serve:dev": "tfg serve -p dev",
"serve:e2e": "tfg serve -p e2e",
"mock": "json-server -q -w db.json",
"prepare:e2e": "run-p mock serve:e2e",
"commit": "git-cz",
"release": "lerna version --yes"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@tfg-commands/cli": "0.1.2",
"@tfg-config/eslint": "0.1.0",
"@tfg-config/prettier": "0.1.0",
"@tfg-config/stylelint": "0.1.0",
"commitizen": "4.1.2",
"cz-conventional-changelog": "3.2.0",
"husky": "4.2.5",
"json-server": "0.16.1",
"lerna": "3.20.2",
"lint-staged": "10.2.6",
"npm-run-all": "4.1.5"
}
}