-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.8 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
{
"name": "recontact_travel_blog",
"version": "1.0.0",
"description": "Travel blog of Pierre",
"author": "Pierre<[email protected]>",
"scripts": {
"install:front": "cd front && yarn install",
"install:back": "cd back && yarn install",
"install": "yarn install:front && yarn install:back",
"build:front": "cd front && yarn generate:en",
"build:back": "cd back && yarn build",
"build": "yarn build:back && yarn build:front",
"clean:front": "cd front && yarn clean",
"clean:back": "cd back && yarn clean",
"clean": "yarn clean:front && yarn clean:back",
"start:front": "cd front && yarn start",
"start:dev": "cd back && yarn start:dev",
"start": "cd back && yarn start",
"test:front:ci": "cd front && yarn test:coverage --maxWorkers=25%",
"test:front": "cd front && yarn test",
"test:back": "cd back && yarn test",
"test:back:ci": "cd back && yarn test",
"test": "yarn test:back && yarn test:front",
"lint:front": "cd front && yarn lint",
"lintfix:front": "cd front && yarn lint:fix",
"lint:back": "cd back && yarn lint",
"lintfix:back": "cd back && yarn lint:fix",
"lint": "yarn lint:front && yarn lint:back",
"lint:fix": "yarn lintfix:front && yarn lintfix:back",
"release": "./tools/release/release.sh",
"lighthouse": "(cd tools/lighthouse && yarn) && (cd tools/lighthouse && yarn test)",
"bundlesize": "npx bundlesize",
"heroku-postbuild": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trollepierre/recontact_travel_blog.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/trollepierre/recontact_travel_blog/issues"
},
"homepage": "https://github.com/trollepierre/recontact_travel_blog#readme",
"engines": {
"yarn": "1.22",
"node": "16.16"
}
}