-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.48 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.48 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@aliceo2/bookkeeping",
"version": "0.30.0",
"author": "ALICEO2",
"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.24.0",
"cls-hooked": "4.2.2",
"deepmerge": "4.2.2",
"joi": "17.6.0",
"mariadb": "3.0.0",
"multer": "1.4.3",
"sequelize": "6.20.0",
"umzug": "2.3.0"
},
"files": [
"lib/",
"docs/"
],
"bundledDependencies": [
"@aliceo2/web-ui",
"cls-hooked",
"deepmerge",
"joi",
"mariadb",
"multer",
"sequelize",
"umzug"
],
"devDependencies": {
"@openapitools/openapi-generator-cli": "2.5.1",
"chai": "4.3.4",
"chai-openapi-response-validator": "0.13.0",
"eslint": "8.17.0",
"js-yaml": "4.1.0",
"mocha": "10.0.0",
"nodemon": "2.0.15",
"nyc": "15.1.0",
"puppeteer": "14.4.0",
"puppeteer-to-istanbul": "1.4.0",
"sinon": "14.0.0",
"supertest": "6.2.0"
}
}