-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 944 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
{
"name": "node-boilerplate",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon --exec babel-node src/index.js",
"build": "babel src/ -d dist/",
"start": "node dist/",
"serve": "babel -w src/ -d dist/ | nodemon dist/ --watch dist/"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"nodemon": "^1.18.3"
},
"dependencies": {
"@serialport/parser-readline": "^2.0.1",
"babel-runtime": "^6.26.0",
"dotenv": "^6.0.0",
"fastify": "^1.11.1",
"fastify-helmet": "^2.1.0",
"fastify-plugin": "^1.2.0",
"moment": "^2.22.2",
"pusher": "^2.1.3",
"serialport": "^7.0.2",
"ussd-pdu-text-converter": "^1.2.2",
"uuid": "^3.3.2",
"winston": "^3.0.0"
}
}