-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.23 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
96
97
98
99
100
101
102
103
104
{
"name": "dismissal",
"version": "3.0.0",
"private": true,
"description": "A School Dismissal App",
"engines": {
"node": "13.9.0"
},
"proxy": "http://localhost:3001/",
"main": "server.js",
"scripts": {
"test": "cd client && nyc npm run test -- --coverage && nyc report --reporter=lcov",
"coverage": " cd client && nyc npm run test -- --coverage && nyc report --reporter=text-lcov",
"pre-commit": "lint-staged",
"lint:js": "eslint . && prettier --list-different **/*.{js,jsx}",
"lint:css": "stylelint **/*.css",
"lint:fix": "eslint . --fix",
"lint": "npm run lint:js && npm run lint:css",
"format": "prettier --write **/*.{js,jsx}",
"db:seed": "node scripts/seedDB.js",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/armonkahil/Dismissal.git"
},
"keywords": [
"dismissal"
],
"author": "Armon Roberts",
"license": "MIT",
"bugs": {
"url": "https://github.com/armonkahil/Dismissal/issues"
},
"homepage": "https://github.com/armonkahil/Dismissal#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-eslint": "^10.1.0",
"concurrently": "^5.3.0",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"prettier-eslint": "^9.0.2",
"prettier-eslint-cli": "^5.0.0",
"pretty-quick": "^2.0.2",
"stylelint": "^13.8.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"gradient-string": "^1.2.0",
"gravatar": "^1.8.1",
"if-env": "^1.0.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.15",
"mongoose-autopopulate": "^0.12.3",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"socket.io": "^2.3.0",
"validator": "^13.1.17"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,css,scss,md}": [
"prettier — single-quote — write",
"git add"
]
}
}