-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.45 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@akc42/money",
"version": "4.2.2",
"description": "Money Management Application",
"main": "server/server.js",
"type": "module",
"scripts": {
"libs": "node scripts/buildlibs.js",
"pretest": "pm2 start money-test.json",
"test": "jest -c jest.e2e.config.js",
"posttest": "pm2 stop money-test-api-server",
"test:server": "jest -c jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akc42/AKCMoney.git"
},
"keywords": [
"Money",
"Finance",
"Accounting"
],
"author": "Alan Chandler",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/akc42/AKCMoney/issues"
},
"homepage": "https://github.com/akc42/AKCMoney#readme",
"dependencies": {
"@akc42/app-utils": "^4.1.1",
"@akc42/server-utils": "^3.2.0",
"@akc42/sqlite-db": "2.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"bcrypt": "^5.1.1",
"better-sqlite3": "^9.2.2",
"body-parser": "^1.20.3",
"content-disposition": "^0.5.4",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"finalhandler": "^1.2.0",
"jwt-simple": "^0.5.6",
"lit": "^3.1.0",
"pdfkit": "^0.14.0",
"rollup": "^4.22.4",
"router": "^2.0.0",
"server-destroy": "^1.0.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"expect-playwright": "^0.8.0",
"jest": "^29.7.0",
"jest-playwright": "0.0.1",
"jest-playwright-preset": "^4.0.0",
"playwright": "^1.40.1"
}
}