forked from hackforla/tdm-calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.72 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
{
"name": "tdm-calculator",
"version": "0.2.7",
"description": "Traffic Data Management Calculator",
"repository": {
"type": "git",
"url": "https://github.com/hackforla/tdm-calculator"
},
"main": "server.js",
"scripts": {
"precommit": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1",
"heroku-postbuild": "cd client && npm i && npm run build",
"start": "nodemon --ignore './client/'",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"release-notes": "gren release",
"lint": "eslint -c .eslintrc.json --ignore-path .eslintignore **/*.{js,jsx}",
"lint:fix": "eslint -c .eslintrc.json --ignore-path .eslintignore --fix **/*.{js,jsx}"
},
"author": "Hack for LA",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.5.4",
"bcrypt": "^3.0.8",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"error-handler": "^1.0.0",
"eslint-plugin-react": "^7.20.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"path": "^0.12.7",
"tedious-connection-pool": "^1.0.5"
},
"devDependencies": {
"@testing-library/cypress": "^6.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.3",
"lerna": "^3.20.2",
"lint-staged": "^10.0.8",
"nodemon": "^2.0.2",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit"
}
},
"lint-staged": {
"*.{js,md}": "prettier --write",
"*.js": "eslint --cache --fix"
}
}