-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.89 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@girlsincode/droid-game",
"version": "1.0.0",
"description": "Droide game",
"main": "dist/server.js",
"type": "module",
"scripts": {
"build": "rm -rf dist && tsc",
"start:production": "NODE_ENV=production node dist/src/server.js",
"start:integration": "NODE_ENV=integration node dist/src/server.js",
"start:development": "NODE_ENV=development node --trace-warnings dist/src/server.js",
"pretest": "node dist/src/utils/prepare-data.js",
"test": "NODE_ENV=integration NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:coverage": "NODE_ENV=integration NODE_OPTIONS=--experimental-vm-modules jest --verbose --coverage --colors",
"dev:watch": "nodemon --watch 'src/**/*.ts' --exec tsc",
"dev:run": "nodemon --watch 'dist/src/server.js' --exec npm run start:development",
"dev": "run-p dev:*",
"lint": "eslint .",
"format:fixall": "prettier --write .",
"format:checkall": "prettier --check .",
"husky:prepare": "husky install",
"compodoc": "compodoc -p tsconfig.doc.json",
"compodoc:open": "compodoc -p tsconfig.doc.json -w -s"
},
"keywords": [],
"author": "Violeta Angelescu <violeta@girlsincode.com>",
"license": "ISC",
"devDependencies": {
"@compodoc/compodoc": "^1.1.19",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.10.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"dotenv": "^16.0.0",
"fastify": "^3.27.1",
"fastify-swagger": "^4.17.0",
"pino": "^7.8.0",
"pino-pretty": "^7.5.1"
}
}