-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 977 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
{
"name": "quickshift",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm i && cd client && npm i && npm run build && cd ../server && npm i",
"server": "node server --prefix server",
"devServer": "nodemon graphql/graphqlserver --prefix server",
"client": "npm start --prefix client",
"start": "concurrently \"npm run server\" \"npm run client\"",
"devStart": "concurrently \"npm run devServer\" \"npm run client\"",
"dbInit": "cd server/&& npm run createTables && knex seed:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PatricioNG/QuickShift.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PatricioNG/QuickShift/issues"
},
"homepage": "https://github.com/PatricioNG/QuickShift#readme",
"dependencies": {
"concurrently": "^5.3.0",
"knex": "^0.21.5"
}
}