-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.21 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.21 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
38
39
{
"name": "beachs-api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "yarn build && node dist/src/index.js",
"start:dev": "ts-node-dev --transpile-only 'src/index.ts'",
"lint": "eslint ./src ./__test__ --ext .ts",
"lint:fix": "eslint ./src ./__test__ --ext .ts --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"test:functional": "jest --projects ./__test__ --runInBand",
"style:check": "prettier --check 'src/**/*.ts' '__test__/**/*.ts'",
"style:fix": "prettier --write 'src/**/*.ts' '__test__/**/*.ts'"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/jest": "^26.0.14",
"@types/module-alias": "^2.0.0",
"@types/node": "^14.11.2",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.10.0",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"supertest": "^5.0.0",
"ts-jest": "^26.4.0",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^4.0.3"
},
"dependencies": {
"@overnightjs/core": "^1.7.5",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"module-alias": "^2.2.2"
}
}