This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.67 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
{
"name": "@cloud-cnc/core",
"version": "0.5.0",
"description": "Cloud CNC Core Server",
"main": "index.js",
"private": true,
"scripts": {
"coverage": "nyc --reporter=lcov npm run test",
"lint": "eslint .",
"start": "cross-env NODE_ENV=production node app.js",
"start:development": "cross-env NODE_ENV=development node app.js",
"start:docker": "cross-env NODE_ENV=docker node app.js",
"test": "cross-env NODE_ENV=unit mocha --colors --exit --timeout 60000 ./app/tests/index.js"
},
"author": "Cloud CNC",
"license": "MIT",
"dependencies": {
"argon2": "^0.28.3",
"config": "^3.3.7",
"connect-redis": "^6.0.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.17.2",
"express-rate-limit": "^6.2.0",
"express-sanitizer": "^1.0.6",
"express-session": "^1.17.2",
"formidable": "^2.0.1",
"helmet": "^5.0.2",
"mongoose": "^6.1.8",
"mongoose-id-validator": "^0.6.0",
"rate-limit-redis": "^3.0.0",
"redis": "^4.0.2",
"socket.io": "^4.4.1",
"speakeasy": "^2.0.0",
"syswide-cas": "^5.3.0",
"uid2": "^1.0.0",
"winston": "^3.5.0",
"winston-daily-rotate-file": "^4.6.0"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"eslint": "^8.8.0",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"socket.io-client": "^4.4.1"
},
"browserslist": [
"last 1 Chrome version"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Cloud-CNC/core.git"
},
"keywords": [
"cloud",
"cnc"
],
"bugs": {
"url": "https://github.com/Cloud-CNC/core/issues"
},
"homepage": "https://github.com/Cloud-CNC/core#readme",
"snyk": true
}