-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.74 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
50
51
52
53
54
55
56
{
"name": "bov-control",
"author": "Gabriel Santos <[email protected]>",
"scripts": {
"predev": "yarn build",
"prestart": "yarn build",
"start": "node_modules/.bin/nodemon dist/src/server.js",
"jest": "node_modules/.bin/jest",
"build": "node_modules/.bin/tsc",
"concurrently": "node_modules/.bin/concurrently",
"test": "yarn jest --watch --runInBand",
"test:all": "yarn jest --watchAll --runInBand",
"test:coverage": "yarn jest --coverage --runInBand",
"watch": "yarn build --watch",
"dev": "yarn concurrently -n tsc,js -i \"yarn watch\" \"yarn start\"",
"lint": "yarn eslint . --ext .ts,.tsx"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/chance": "^1.0.7",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/hapi__joi": "^16.0.3",
"@types/jest": "^24.0.23",
"@types/jsonwebtoken": "^8.3.7",
"@types/mongoose": "^5.5.32",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.2",
"chance": "^1.1.3",
"concurrently": "^5.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-node": "^11.0.0",
"jest": "^24.9.0",
"nodemon": "^2.0.1",
"supertest": "^4.0.2",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.2",
"typescript": "^3.7.2"
},
"version": "0.0.1",
"dependencies": {
"@hapi/joi": "^16.1.7",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.12"
}
}