-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.77 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.77 KB
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
{
"name": "tsnode-starter",
"version": "1.0.0",
"description": "A Node TS + Express app starter.",
"author": "Guilherme Prezzi <guilhermeprezzi1997@gmail.com>",
"license": "MIT",
"main": "index.js",
"scripts": {
"server:serve": "./node_modules/.bin/nodemon -e ts --exec npm run server:start",
"server:start": "./node_modules/.bin/ts-node --project ./tsconfig.json ./src/index.ts",
"server:test": "./node_modules/.bin/jest --config ./jest.config.js --detectOpenHandles --forceExit",
"server:lint": "./node_modules/.bin/tslint -c ./tslint.json -p ./tsconfig.json 'src/**/*.ts'",
"server:lint:fix": "./node_modules/.bin/tslint -c ./tslint.json -p ./tsconfig.json 'src/**/*.ts' --fix",
"test": "npm run server:test",
"lint": "npm run server:lint",
"lint:fix": "npm run server:lint:fix",
"docs": "./node_modules/.bin/typedoc --options ./scripts/typedoc.json ./src/",
"docs:open": "./node_modules/.bin/typedoc --options ./scripts/typedoc.json ./src/ && live-server ./docs/server-api",
"serve": "npm run server:serve",
"start": "npm run server:start"
},
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"debug": "^3.1.0",
"dotenv": "^6.0.0",
"express": "^4.16.2",
"injection-js": "^2.2.1",
"lodash": "~4.17.4",
"mongoose": "~5.1.7",
"morgan": "^1.9.0",
"reflect-metadata": "^0.1.12"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/jest": "^23.3.0",
"@types/mongoose": "^5.2.2",
"@types/node": "~8.9.4",
"@types/supertest": "^2.0.5",
"faker": "^4.1.0",
"jest": "^23.0.0",
"nodemon": "^1.17.3",
"supertest": "^3.0.0",
"ts-jest": "^23.0.1",
"ts-node": "~5.0.1",
"tslint": "~5.9.1",
"typedoc": "^0.11.1",
"typescript": "~2.7.2"
}
}