-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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-todo-app",
"version": "1.0.0",
"description": "This app would be my starting point of any future apps.",
"main": "index.js",
"proxy": "http://localhost:4000",
"scripts": {
"check": "prettier \"**/*.js\" --check",
"client": "cd client && npm start",
"start": "concurrently \"npm run server\" \"npm run client\"",
"fix": "eslint --fix \"**/*.js\"",
"install-client": "cd client && npm install",
"install-server": "cd server && npm install",
"postinstall": "concurrently \"npm run install-server\" \"npm run install-client\"",
"server": "cd server && npm run start"
},
"husky": {
"hooks": {
"pre-commit": "cd client && npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/kendyl93/mern-todo-app.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kendyl93/mern-todo-app/issues"
},
"homepage": "https://github.com/kendyl93/mern-todo-app#readme",
"devDependencies": {
"babel-eslint": "^10.0.2",
"concurrently": "^4.1.1",
"dotenv": "^8.0.0",
"eslint": "^6.1.0",
"eslint-config-react": "^1.1.7",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"html-loader": "^0.5.5",
"husky": "^3.0.4",
"prettier": "^1.18.2"
}
}