forked from AliceO2Group/Bookkeeping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.29 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
{
"name": "@aliceo2/bookkeeping",
"version": "0.17.11",
"author": "CERN",
"license": "GPL-3.0",
"scripts": {
"coverage": "nyc npm test && npm run coverage:report",
"coverage:report": "nyc report --reporter=html --reporter=json",
"lint": "eslint . --ext .js",
"lint:fix": "npm run lint -- --fix",
"sequelize": "sequelize-cli",
"start:dev": "nodemon --ignore 'lib/public/**/*.js' lib/main.js",
"start:prod": "node lib/main.js",
"test": "mocha --exit --timeout 0",
"docker-run": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up --build",
"docker-test": "docker-compose -f docker-compose.yml -f docker-compose.test.yml up --build --abort-on-container-exit"
},
"dependencies": {
"@aliceo2/web-ui": "1.18.2",
"cls-hooked": "4.2.2",
"deepmerge": "4.2.2",
"joi": "17.1.1",
"mariadb": "2.5.2",
"multer": "1.4.2",
"sequelize": "6.3.5",
"umzug": "2.3.0"
},
"devDependencies": {
"chai": "4.2.0",
"chai-openapi-response-validator": "0.13.0",
"eslint": "7.15.0",
"js-yaml": "3.14.1",
"mocha": "8.2.1",
"nodemon": "2.0.7",
"nyc": "15.1.0",
"puppeteer": "8.0.0",
"puppeteer-to-istanbul": "git+https://github.com/SoftwareForScience/puppeteer-to-istanbul.git",
"supertest": "6.1.1"
}
}