-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.36 KB
/
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
{
"name": "bartop",
"version": "0.0.1",
"description": "Web framework for hobbyist and freelance bartenders",
"scripts": {
"install": "npm run install-bartop-ui && npm run install-bartop-api",
"install-bartop-ui": "cd bartop-ui && npm install",
"install-bartop-api": "cd bartop-api && npm install",
"start": "echo 'To run the full application, execute `npm run bartop-api` and `npm run bartop-ui` in two separate processes.'",
"bartop-ui": "cd bartop-ui && npm start",
"bartop-api": "cd bartop-api && npm start",
"database": "cd bartop-api && npm run database",
"test": "npm run test-bartop-api && npm run test-bartop-ui",
"test-bartop-api": "cd bartop-api && npm test",
"test-bartop-ui": "cd bartop-ui && npm test",
"test-all": "npm run test-bartop-api && npm run test-bartop-ui-ci",
"test-bartop-ui-ci": "cd bartop-ui && CI=true npm test -- -u",
"lint": "npm run lint-bartop-api && npm run lint-bartop-ui",
"lint-bartop-api": "cd bartop-api && npm run lint",
"lint-bartop-ui": "cd bartop-ui && npm run lint && npm run lint:css",
"precommit": "npm run lint && npm run test-bartop-ui"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dpopp07/bartop.git"
},
"keywords": [
"bartop"
],
"author": "Dustin Popp",
"license": "MIT",
"devDependencies": {
"husky": "^0.14.3"
}
}