-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "pecorino-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"start-dev": "./node_modules/.bin/nodemon -e js,yaml --exec npm run babel-node",
"babel-node": "./node_modules/.bin/babel-node src/index.js --inspect",
"build": "./node_modules/.bin/babel src -d dist --copy-files"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joesabido/pecorino-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/joesabido/pecorino-api/issues"
},
"homepage": "https://github.com/joesabido/pecorino-api#readme",
"dependencies": {
"cors": "^2.8.4",
"express": "^4.16.3",
"js-yaml": "^3.13.1",
"serialport": "^7.0.2",
"socket.io": "^2.1.1",
"swagger-tools": "^0.10.4"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.3.4",
"nodemon": "^1.18.10"
}
}