-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.03 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.03 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
{
"name": "task_tree",
"description": "A task manager",
"main": "server.js",
"scripts": {
"postinstall": "cd ./client && yarn install",
"test": "yarn run build:test && yarn run lint && rspec",
"lint": "cd client && yarn run lint",
"build:clean": "rm -rf public/webpack || true",
"build:test": "(cd client && yarn run build:test)",
"build:production:client": "(cd client && yarn run build:production:client)",
"build:production:server": "(cd client && yarn run build:production:server)",
"build:client": "(cd client && yarn run build:client)",
"build:server": "(cd client && yarn run build:server)",
"build:dev:client": "(cd client && yarn run build:dev:client)",
"build:dev:server": "(cd client && yarn run build:dev:server)",
"hot-assets": "(cd client && yarn run hot-assets)",
"install": "(cd client && yarn install)"
},
"keywords": [
"react",
"rails",
"server",
"rendering"
],
"author": "joeytepp",
"license": "MIT",
"devDependencies": {},
"dependencies": {}
}