-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1023 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": "authenticater",
"version": "1.0.0",
"description": "authenticate with google",
"devDependencies": {
"npm-run-all": "^4.1.5"
},
"scripts": {
"watch:server": "npm run watch --prefix server",
"watch:client": "npm run watch --prefix client",
"watch": "npm-run-all --parallel watch:*",
"lint:server": "npm run lint --prefix server",
"lint:client": "npm run lint --prefix client",
"lint": "npm-run-all --parallel lint:*",
"build:server": "npm run build --prefix server",
"build:client": "npm run build --prefix client",
"build": "npm-run-all --parallel build:*",
"type:server": "npm run type --prefix server",
"type:client": "npm run type --prefix client",
"type": "npm-run-all --parallel type:*",
"test:server": "npm run test --prefix server",
"test:client": "npm run test --prefix client",
"test": "npm-run-all --parallel test:*"
},
"author": "Taichi Tsujioka",
"license": "ISC",
"dependencies": {
"server": "file:server"
}
}