-
Notifications
You must be signed in to change notification settings - Fork 288
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "mern",
"description": "CRUD in MongoDB, Express, React/Hooks, Node",
"main": "index.js",
"scripts": {
"test": "eslint --fix **/src/",
"precommit": "npm test",
"prepush": "npm test",
"heroku:add": "heroku git:remote -a",
"deploy:heroku": "git subtree push --prefix server heroku master"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=6.0.0"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "git+https://github.com/amazingandyyy/mern.git"
},
"keywords": [
"react"
],
"author": "Amazingandyyy <[email protected]> (Andy Chen)",
"license": "MIT",
"bugs": {
"url": "https://github.com/amazingandyyy/mern/issues"
},
"homepage": "https://github.com/amazingandyyy/mern#readme",
"devDependencies": {
"eslint": "^4.14.0",
"eslint-config-logux": "^17.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-es5": "^1.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.5.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"nodemon": "^1.17.5"
},
"dependencies": {}
}