-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 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
57
58
{
"name": "pangaea",
"version": "1.0.0",
"description": "Pangaea ",
"scripts": {
"build-ts": "tsc",
"coveralls": "jest --setupFiles dotenv/config --coverage && cat ./coverage/lcov.info | coveralls",
"dev": "concurrently --kill-others \"npm run watch-ts\" \"npm run watch-node\" \"npm run lint-w\"",
"lint": "tsc --noEmit && esw \"**/*.{js,ts}\" --quiet --fix",
"lint-w": "tsc --noEmit && esw \"**/*.{js,ts}\" --quiet --fix -w",
"postinstall": "tsc",
"serve": "node dist/index.js",
"start": "npm run serve",
"test": "jest --setupFiles dotenv/config -i --runInBand",
"watch-node": "nodemon dist/index.js",
"watch-test": "npm run test --setupFiles dotenv/config --watchAll",
"watch-ts": "tsc -w"
},
"keywords": [
"pubsub",
"fullstack",
"typescript",
"backend",
"pangaea",
"tdd",
"eslint"
],
"author": "Nwachukwu Chibuike",
"license": "ISC",
"dependencies": {
"axios": "^0.23.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mongodb-memory-server": "^7.4.3",
"mongoose": "^5.11.15",
"nodemon": "^2.0.13"
},
"devDependencies": {
"@types/concurrently": "^5.2.1",
"@types/cors": "^2.8.9",
"@types/eslint": "^7.2.6",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"concurrently": "^5.3.0",
"coveralls": "^3.1.0",
"eslint": "^7.18.0",
"eslint-watch": "^7.0.0",
"jest": "^26.6.3",
"supertest": "^6.1.3",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
}
}