-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 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
47
48
49
50
51
52
53
{
"name": "nodejs-hometask",
"version": "0.0.1",
"description": "Hometask for NodeJS and express lecture",
"main": "index.js",
"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",
"nodemon": "nodemon index.js",
"build-front": "cd client | ls",
"feedback": "node ./feedback/index.js",
"generate": "npm run test-local | npm run feedback",
"lint": "eslint --ext .js ./"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/DmitrijDN/nodejs-2020-private.git"
},
"keywords": [
"NodeJS",
"expressJS"
],
"author": "Dmitriy Beseda",
"license": "MIT",
"bugs": {
"url": "https://github.com/DmitrijDN/nodejs-2020-private/issues"
},
"homepage": "https://github.com/DmitrijDN/nodejs-2020-private#readme",
"dependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"lodash.isempty": "^4.4.0",
"lowdb": "^1.0.0",
"mocha": "^7.1.1",
"request": "^2.88.2",
"uuid": "^7.0.3"
},
"devDependencies": {
"nodemon": "^2.0.4",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"pre-commit": "^1.2.2"
}
}