forked from sumeet-bansal/tse-onboarding-fa19
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.79 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
59
{
"name": "quick-repo",
"version": "1.0.0",
"description": "quick repo",
"main": "build/index.js",
"scripts": {
"clean": "./node_modules/.bin/rimraf build/*",
"tsc": "./node_modules/.bin/tsc",
"build": "./node_modules/.bin/npm-run-all clean tsc",
"start": "node build/src/index.js",
"dev": "./node_modules/.bin/nodemon -e ts -V src/index.ts --exec ./node_modules/.bin/ts-node src/index.ts",
"lint": "./node_modules/.bin/eslint . --ext .ts",
"test": "./node_modules/.bin/jest --config jest.config.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sumeet-bansal/quick-repo.git"
},
"author": "Sumeet Bansal",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/sumeet-bansal/quick-repo/issues"
},
"homepage": "https://github.com/sumeet-bansal/quick-repo#readme",
"dependencies": {
"body-parser": "^1.19.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.11.0",
"express": "^4.17.1",
"mongoose": "^5.7.9",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.8.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/jest": "^24.0.22",
"@types/mongoose": "^5.5.30",
"@types/morgan": "^1.7.37",
"@types/multer": "^1.3.10",
"@types/node": "^12.12.6",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"babel-eslint": "^10.0.3",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.7.2"
}
}