forked from mandarons/yadd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.63 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "mandarons-yadd",
"version": "1.0.0",
"description": "Mandarons:: YADD - Yet Another DashboarD for your services",
"private": true,
"author": {
"name": "Mandar Patil",
"email": "mandarons@pm.me",
"url": "https://github.com/mandarons"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mandarons/yadd.git"
},
"bugs": {
"url": "https://github.com/mandarons/yadd/issues"
},
"homepage": "https://github.com/mandarons/yadd",
"keywords": [
"dashboard",
"self-host"
],
"scripts": {
"e2e": "npm run prod:local & wait-on http://localhost:3334/ && CYPRESS_REMOTE_DEBUGGING_PORT=9222 cypress open",
"build": "NODE_ENV=production rm -rf ./build && tsc --build ./tsconfig.json && npm run build --prefix ./clients/web && mv ./clients/web/build ./build/public",
"build:server": "tsc --build ./tsconfig.json",
"build:docker:local": "PUBLIC_URL=. npm run build && docker build --tag yadd .",
"start": "nodemon ./server/src/index.ts",
"prod:local": "NODE_ENV=production node ./build/src/index.js",
"prod": "NODE_ENV=production node ./src/index.js",
"test:server": "NODE_ENV=test mocha -r ts-node/register --r source-map-support/register --recursive ./server/tests/**/*.test.ts",
"test:server:ci": "NODE_ENV=test nyc --reporter=html --reporter=json-summary mocha --reporter mocha-allure-reporter --exit -r ts-node/register ./server/tests/**/*.ts"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"is-reachable": "^5.0.0",
"js-yaml": "^4.1.0",
"moment": "^2.29.1",
"ms": "^2.0.0",
"node-cron": "^3.0.0",
"sequelize": "^6.6.2",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.18",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/js-yaml": "^4.0.1",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"@types/node-cron": "^2.0.3",
"@types/sinon": "^10.0.2",
"@types/validator": "^13.1.4",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"cypress": "^7.5.0",
"mocha": "^9.0.0",
"mocha-allure-reporter": "^1.4.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"sinon": "^11.1.1",
"source-map-support": "^0.5.19",
"ts-node": "^10.0.0",
"typescript": "^4.3.2",
"wait-on": "^5.3.0"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"reporter": [
"html"
],
"all": true,
"include": [
"server/src/**/*.ts"
],
"exclude": [
"server/tests/**/*.test.ts"
]
}
}