-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.04 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
{
"name": "nodemon-babel-preset-typescript",
"version": "1.0.0",
"description": "Example project how to combine: node + babel + typescript",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node ./src/index.ts --extensions .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["nodemon", "node", "babel", "babel/preset-typescript"],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.1",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-typescript": "^7.6.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.1",
"@types/node": "^12.7.5",
"cors": "^2.8.5",
"nodemon": "^1.19.2",
"typescript": "^3.6.3"
},
"dependencies": {
"dotenv": "^8.1.0",
"express": "^4.17.1"
}
}