-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.23 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
{
"name": "andrea",
"version": "1.0.0",
"description": "Backend for Andrea & Lars prototype",
"main": "src/main.ts",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.8.4"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/node": "^13.1.4",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"chokidar-cli": "^2.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.4"
},
"scripts": {
"dev": "npx ts-node-dev --respawn --transpileOnly ./src/main.ts",
"build": "npx tsc -p .",
"serve": "node dist/main.js",
"test:unit": "echo \"Soon Andrea, soon\" && exit 1",
"test:integration": "echo \"Soon Andrea, soon\" && exit 1",
"lint": "npx eslint \"src/**/*.ts\" --ignore-pattern \"src/**/*.spec.ts\" ",
"lint:watch": "npx chokidar './src/**/*.ts' -c \"npm run lint\" --initial --verbose"
},
"author": "Andrea Bellagamba, Lars Rye Jeppesen",
"license": "ISC"
}