-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 797 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 797 Bytes
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
{
"name": "onelist",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "npm-run-all -p client:serve server:start",
"client:serve": "cd client && npm run serve",
"client:build": "cd client && npm run build",
"client:test": "cd client && npm test",
"server:start": "cd server && npm start",
"env:pull": "scp git@192.168.0.100:www/onelist/.env .env",
"db:pull": "pg_dump --format=c -h 192.168.0.100 -U vicnie onelist | pg_restore --clean --no-owner -h localhost -d onelist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VictorWinberg/onelist.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/VictorWinberg/onelist/issues"
},
"devDependencies": {
"npm-run-all": "4.1.5"
}
}