-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 851 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 851 Bytes
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
{
"name": "jira-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"babel-node": "babel-node ",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start1": "npm run build && node dist/index.js",
"start2": "babel-node index.js",
"start": "nodemon --exec npm run babel-node -- ./index.js"
},
"author": "Boyan Dzambazov",
"license": "WTFPL",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"express-session": "^1.15.6",
"jira-connector": "^2.8.0",
"moment": "^2.22.2",
"morgan": "^1.9.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"rimraf": "^2.6.2"
}
}