-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.88 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
60
61
62
63
64
65
66
67
68
69
{
"name": "nodex",
"version": "1.0.0",
"description": "A Node.js - Express Framework Boilerplate",
"main": "dist/app/index.js",
"scripts": {
"clean": "rimraf dist/*",
"copy-assets": "ts-node src/app/tools/copyStaticFiles",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc",
"build": "npm-run-all clean lint tsc copy-assets",
"dev:start": "npm-run-all test build start",
"dev": "nodemon --watch src -e ts,html --exec npm run dev:start",
"start": "node .",
"test": "mocha -r ts-node/register ./tests/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jimuelpalaca/nodex.git"
},
"keywords": [
"Node.js",
"ExpressJS",
"TypeScript",
"Boilerplate"
],
"author": "Jimuel Palaca",
"license": "ISC",
"bugs": {
"url": "https://github.com/jimuelpalaca/nodex/issues"
},
"homepage": "https://github.com/jimuelpalaca/nodex#readme",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/fs-extra": "^8.1.0",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.4",
"@types/shelljs": "^0.8.7",
"@types/vhost": "^3.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"fs-extra": "^9.0.0",
"mocha": "^7.1.2",
"nodemon": "^2.0.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"shelljs": "^0.8.3",
"ts-mockito": "^2.5.0",
"ts-node": "^8.9.0",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.4.0",
"mysql2": "^2.1.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.24",
"vhost": "^3.0.2"
}
}