-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.36 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
37
38
{
"name": "grasis",
"version": "1.0.0",
"description": "Graduation thesis",
"directories": {
"doc": "docs"
},
"engines": {
"node": "14.x",
"npm": "6.x"
},
"scripts": {
"lint": "eslint --fix --max-warnings=0 --ext .ts,.tsx .",
"test": "concurrently -p \"[{name}]\" -n \"API,WEB\" -c \"magenta.bold,blue.bold\" \"yarn --cwd ./api test\" \"yarn --cwd ./web test\"",
"install": "yarn install --cwd ./api && yarn install --cwd ./web",
"build": "concurrently -p \"[{name}]\" -n \"API,WEB\" -c \"magenta.bold,blue.bold\" \"yarn --cwd ./api build\" \"yarn --cwd ./web build\"",
"start:prod": "concurrently -p \"[{name}]\" -n \"API,WEB\" -c \"magenta.bold,blue.bold\" \"yarn --cwd ./api start:prod\" \"PORT=3001 yarn --cwd ./web start:prod\"",
"type-check": "concurrently -p \"[{name}]\" -n \"API,WEB\" -c \"magenta.bold,blue.bold\" \"yarn --cwd ./api type-check\" \"yarn --cwd ./web type-check\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/doonpy/grasis.git"
},
"keywords": [],
"author": "Poon Nguyen",
"license": "MIT",
"bugs": {
"url": "https://github.com/doonpy/grasis/issues"
},
"homepage": "https://github.com/doonpy/grasis#readme",
"devDependencies": {
"concurrently": "^5.3.0",
"eslint": "^7.12.1",
"prettier": "^2.1.2",
"react": "^17.0.1",
"typescript": "^4.0.5"
}
}