-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.63 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
{
"name": "ioprodz",
"version": "1.0.0",
"description": "the ioprodz platform",
"repository": "[email protected]:ioprodz/ioprodz.git",
"author": "ioprodz ([email protected])",
"license": "MIT",
"private": false,
"scripts": {
"preinstall": "cd icosium && yarn && cd ../hoggar && yarn",
"icosium:dev": "cd icosium && yarn dev",
"icosium:build": "cd icosium && yarn build",
"icosium:start": "cd icosium && yarn start",
"icosium:test": "cd icosium && yarn test",
"icosium:lint": "cd icosium && yarn lint",
"icosium:format": "cd icosium && yarn format",
"hoggar:dev": "cd hoggar && yarn dev",
"hoggar:build": "cd hoggar && yarn build",
"hoggar:start": " cd hoggar && yarn start",
"hoggar:generate": "cd hoggar && npx prisma generate",
"hoggar:migrate:reset": "cd hoggar && yarn resetdb",
"hoggar:migrate:create": "cd hoggar && npx prisma migrate dev",
"hoggar:migrate": "cd hoggar && npx prisma migrate deploy",
"hoggar:test": "cd hoggar && yarn test --runInBand",
"hoggar:lint": "cd hoggar && yarn lint",
"hoggar:format": "cd hoggar && yarn format",
"project:clean": "rm -rf node_modules hoggar/node_modules hoggar/dist icosium/node_modules icosium/build",
"project:lint": "yarn hoggar:lint && yarn icosium:lint",
"project:lint:fix": "yarn hoggar:lint --fix && yarn icosium:lint --fix",
"project:format": "yarn hoggar:format && yarn icosium:format",
"prepare": "husky install"
},
"devDependencies": {
"husky": "^8.0.0",
"lint-staged": "^13.0.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn project:lint:fix",
"yarn project:format"
]
}
}