-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.13 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.13 KB
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
36
37
{
"name": "domain-model",
"version": "1.0.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "suzukalight <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc -b",
"rebuild": "run-s clean reinstall build",
"clean": "run-p clean:*",
"clean:lib": "rimraf lib *.tsbuildinfo",
"clean:modules": "rimraf node_modules",
"clean:coverage": "rimraf coverage",
"reinstall": "yarn install",
"test": "env-cmd -f .env.default jest",
"test:watch": "yarn test --watch",
"test:cov": "run-s test:cov:run test:cov:open",
"test:cov:run": "yarn test --coverage",
"test:cov:open": "npx http-server -o ./coverage/lcov-report",
"test:cov:watch": "yarn test --coverage --watch",
"setup": "run-s setup:env",
"setup:env": "node -e \"require('fs').copyFileSync('./.env.default', './.env')\""
},
"dependencies": {
"bcrypt": "^5.0.0",
"common": "file:../common",
"dotenv": "^8.2.0",
"graphql-scalars": "^1.2.6",
"jsonwebtoken": "^9.0.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/jsonwebtoken": "^8.5.0",
"env-cmd": "^10.1.0"
}
}