-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 920 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
31
32
33
34
35
36
37
38
39
40
{
"name": "draftr",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:mikaelrss/draftr.git",
"author": "Mikael Solstad <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": {
"nohoist": [
"**"
],
"packages": [
"frontend",
"backend"
]
},
"scripts": {
"build": "yarn workspaces run build",
"start:dev": "run-p start:fe:dev start:be:dev",
"start:fe:dev": "yarn workspace frontend start",
"start:be:dev": "yarn workspace backend start:dev",
"start": "yarn workspace frontend start:prod",
"lint": "yarn workspaces run lint",
"heroku-postbuild": "yarn run build"
},
"devDependencies": {
"husky": "^1.3.1",
"prettier": "^1.16.4",
"tslint": "^5.14.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"dependencies": {
"typescript": "^3.3.3333"
}
}