-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.34 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
{
"name": "cbm-engine",
"version": "2.0.0",
"description": "Code for the server-side of the cbmjs platform.",
"homepage": "https://github.com/cbmjs/cbm-engine#readme",
"bugs": {
"url": "https://github.com/cbmjs/cbm-engine/issues"
},
"repository": "github:cbmjs/cbm-engine",
"license": "AGPL-3.0",
"author": {
"name": "Napoleon-Christos Oikonomou",
"email": "[email protected]",
"url": "https://iamnapo.me"
},
"type": "module",
"exports": "./src/index.js",
"scripts": {
"initDB": "node src/dev/initDB.js",
"lint": "eslint . --cache",
"start": "node src/index.js",
"test": "npm run lint && c8 ava -vs"
},
"eslintConfig": {
"extends": "iamnapo",
"rules": {
"import/no-unresolved": "off"
},
"ignorePatterns": "library/*"
},
"dependencies": {
"chalk": "^5.3.0",
"dotenv": "^16.3.1",
"execa": "^8.0.1",
"express": "^4.18.2",
"helmet": "^7.0.0",
"mathjs": "^11.11.0",
"mongodb": "^6.0.0",
"mongoose": "^6.12.0",
"morgan": "^1.10.0",
"multer": "^2.0.0-rc.4",
"natural": "^6.7.1",
"request": "^2.88.2",
"shelljs": "^0.8.5",
"sync-request": "^6.1.0",
"wordpos": "^2.1.0"
},
"devDependencies": {
"ava": "^5.3.1",
"c8": "^8.0.1",
"eslint": "^8.48.0",
"eslint-config-iamnapo": "^32.2.0",
"got": "^13.0.0",
"jsdoc": "^4.0.2",
"test-listen": "^1.1.0"
},
"engines": {
"node": ">=14.8"
}
}