-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 808 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 808 Bytes
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
{
"name": "binary-back-end",
"version": "0.0.1",
"description": "Hometask for NodeJS and express lecture",
"main": "index.js",
"type": "module",
"scripts": {
"test": "sh -c 'env REPO_URL=$0 npx mocha tests/**/*.spec.js -R JSON --exit'",
"test-local": "./node_modules/.bin/mocha tests/**/*.spec.js --exit -R JSON",
"start": "node index.js",
"build-front": "cd client | ls",
"feedback": "node ./feedback/index.js",
"generate": "npm run test-local | npm run feedback"
},
"keywords": [
"NodeJS",
"expressJS"
],
"license": "MIT",
"dependencies": {
"cors": "2.8.5",
"express": "4.18.2",
"lodash.isempty": "4.4.0",
"lowdb": "1.0.0",
"request": "2.88.2",
"uuid": "9.0.0"
},
"engines": {
"node": "16.x.x",
"npm": "8.x.x"
}
}