-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 992 Bytes
/
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
{
"name": "apipollon",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tslint": "tslint -c tslint.json 'src/**/*.ts'",
"watch": "nodemon --require dotenv/config src/app.ts",
"dev": "npm run tslint & npm run watch",
"build": "tsc src/app.ts"
},
"author": "alecandre Esteves",
"license": "ISC",
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"ignore": [
"*.test.ts"
],
"delay": "3",
"execMap": {
"ts": "ts-node"
}
},
"dependencies": {
"@types/express": "^4.16.0",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"log4js": "^3.0.5",
"morgan": "^1.9.0",
"mysql": "^2.16.0"
},
"devDependencies": {
"nodemon": "^1.18.3",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.10.0",
"typescript": "^3.0.1"
}
}