-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 985 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 985 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
33
34
35
36
37
38
39
40
41
{
"name": "arrowverse-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prettify": "npx prettier --write .",
"test": "jest --detectOpenHandles --unhandled-rejections=strict",
"elm-start": "cd public && elm reactor",
"elm-build": "cd public && elm make src/Main.elm --output js/app.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettify",
"pre-push": "npm run prettify"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/DhanushAdithya/arrowverse-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DhanushAdithya/arrowverse-api/issues"
},
"homepage": "https://github.com/DhanushAdithya/arrowverse-api#readme",
"dependencies": {
"axios": "^0.20.0",
"mongoose": "^5.10.6",
"node-html-parser": "^1.2.20"
},
"devDependencies": {
"dotenv": "^8.2.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"prettier": "^2.1.2"
}
}