forked from ferreiro/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.16 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.16 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
{
"private": true,
"name": "ferreiro.me",
"engines": {
"node": ">=8.10.0",
"yarn": "1.x"
},
"scripts": {
"check": "npm-check",
"dev": "concurrently \"yarn build:assets\" \"yarn backend:server\" \"yarn frontend:server:dev\"",
"frontend:server:dev": "yarn workspace @ferreiro/client start:dev",
"backend:server": "yarn workspace @ferreiro/server start",
"build:client": "yarn workspace @ferreiro/client build",
"build:server": "yarn workspace @ferreiro/server build",
"build:assets": "yarn build:server && yarn build:client",
"lint": "yarn run lint:client && yarn run lint:server",
"lint:client": "yarn workspace @ferreiro/client lint",
"lint:sever": "yarn workspace @ferreiro/server lint",
"start": "yarn backend:server",
"test": "echo $'[TODO] Implement tests'",
"heroku-postbuild": "yarn build:assets"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"concurrently": "4.1.0",
"npm-check": "5.9.0"
},
"dependencies": {
"xss-filters": "1.2.7",
"concurrently": "4.1.0"
}
}