-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
29 lines (29 loc) · 1.01 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
{
"name": "httptoolkit-accounts",
"description": "API, UI & npm module powering HTTP Toolkit account services",
"private": true,
"scripts": {
"start": "npm run start:api & ACCOUNTS_API=http://localhost:4000/api npm run start:ui",
"start:api": "cd api && npm run start:dev",
"start:ui": "cd ui && npm run start",
"build": "rimraf dist/ && npm run build:module && npm run build:api && npm run build:ui",
"build:module": "cd module && npm run build",
"build:api": "cd api && npm run build",
"build:ui": "cd ui && npm run build",
"test": "npm run build && npm run test:api",
"test:api": "cd api && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/httptoolkit/accounts.git"
},
"author": "Tim Perry <tim@httptoolkit.tech>",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/httptoolkit/accounts/issues"
},
"homepage": "https://github.com/httptoolkit/accounts#readme",
"devDependencies": {
"rimraf": "^3.0.2"
}
}