-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.05 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.05 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
{
"name": "base",
"version": "1.2.0",
"description": "Tests",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Mackaton/taMACgotchi_backend"
},
"scripts": {
"dev": "DEBUG=app:* nodemon src/index",
"tunnel:dev": "npx ngrok http 3000",
"start": "NODE_ENV=production node src/index",
"test": "mocha tests/ --exit",
"pretest": "npx eslint --ignore-path .gitignore . --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"git add"
]
},
"keywords": [
"testing",
"base"
],
"author": "Jesús Kauze, David Segura, Amin Arriaga, Manuel Escalante",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"ibm-watson": "^5.6.1",
"mongoose": "^5.9.26",
"set-interval-async": "1.0.33"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.5.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mocha": "^8.0.1",
"ngrok": "^3.2.7",
"nodemon": "^2.0.4",
"prettier": "^2.0.5"
}
}