-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
42
43
{
"name": "puppet-showrunner-server",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/**/*.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon src/index.js --ignore src/runner/tasks/**/* --exec \"npm run lint --fix && node\"",
"start:ci": "node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miquelromero/puppet-showrunner-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/miquelromero/puppet-showrunner-server/issues"
},
"homepage": "https://github.com/miquelromero/puppet-showrunner-server#readme",
"dependencies": {
"apollo-datasource": "^0.2.1",
"apollo-server": "^2.3.1",
"fs-extra": "^7.0.1",
"graphql": "^14.0.2",
"minimist": "^1.2.0",
"nodemon": "^1.18.9",
"os-utils": "0.0.14",
"puppeteer": "^1.11.0",
"sequelize": "^4.42.0",
"sqlite3": "^4.0.4",
"uniqid": "^5.0.3",
"winston": "^3.1.0",
"winston-daily-rotate-file": "^3.5.1"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0"
}
}