-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.76 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon -L ./index.js",
"test": "jest --passWithNoTests",
"test:watch": "jest --passWithNoTests --watch",
"changestream:update": "node test/lessons/change-updates.js",
"changestream:insert": "node test/lessons/change-insert.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.js": [
"prettier --write",
"eslint --fix",
"npm test",
"git add"
]
},
"ignore": [
"**/build/**",
"**/data/**"
]
},
"engines": {
"node": "14.16.0",
"yarn": "1.22.10"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-proposal-do-expressions": "^7.14.5",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
"@babel/plugin-proposal-function-sent": "^7.14.5",
"@babel/plugin-proposal-json-strings": "^7.14.5",
"@babel/plugin-proposal-logical-assignment-operators": "^7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-numeric-separator": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-proposal-pipeline-operator": "^7.14.5",
"@babel/plugin-proposal-throw-expressions": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/register": "^7.14.5",
"@babel/runtime": "^7.14.5",
"babel-core": "^6.26.3",
"babel-jest": "^27.0.2",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"chai": "^4.3.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"express": "^4.17.1",
"faker": "^5.5.3",
"jest-runner": "^27.0.4",
"jsonwebtoken": "^8.5.1",
"mocha": "^9.0.0",
"mongodb": "^3.6.9",
"morgan": "^1.10.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"sinon": "^11.1.1"
},
"devDependencies": {
"concurrently": "^6.2.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"jest-cli": "^27.0.4",
"jest-express": "^1.12.0",
"lint-staged": "^11.0.0",
"npm-check-updates": "^11.6.0"
}
}