-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.2 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
{
"name": "acms-api",
"version": "3.11.0",
"repository": "artcom/acms-api",
"license": "MIT",
"scripts": {
"format": "prettier src test --write",
"lint": "eslint src test --fix",
"start": "node src/index.js",
"test": "jest",
"test:watch": "jest --watch --verbose",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"watch": "nodemon src/index.js | bunyan",
"debug": "node --inspect-brk src/index.js"
},
"engines": {
"node": "~18.12"
},
"dependencies": {
"@artcom/logger": "^1.5.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.18.1",
"fs-extra": "^10.1.0",
"json5": "^2.2.1",
"lodash.camelcase": "^4.3.0",
"lodash.get": "^4.4.2",
"lodash.isplainobject": "^4.0.6",
"lodash.isundefined": "^3.0.1",
"lodash.mapkeys": "^4.6.0",
"lodash.pickby": "^4.6.0",
"lodash.set": "^4.3.2",
"nodegit": "^0.27.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.2",
"jest": "^29.0.2",
"nodemon": "^2.0.19",
"prettier": "2.7.1",
"tmp": "^0.2.1"
}
}