forked from t-ho/mern-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "mern-stack",
"version": "1.0.0",
"description": "MERN stack - MongoDB - Express - React - Redux - React Native - NodeJs",
"main": "start.js",
"scripts": {
"postinstall": "node start install-children",
"start": "node start server:client:mobile",
"server:client": "node start server:client",
"server:mobile": "node start server:mobile",
"client": "node start client",
"mobile": "node start mobile",
"server": "node start server",
"test": "node start test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/t-ho/mern-stack.git"
},
"author": "t-ho <t.ho@tdev.app>",
"license": "MIT",
"bugs": {
"url": "https://github.com/t-ho/mern-stack/issues"
},
"homepage": "https://tdev.app/mern-stack",
"devDependencies": {
"chalk": "^4.1.1",
"concurrently": "^6.2.0",
"dotenv": "^10.0.0",
"figlet": "^1.5.0",
"husky": "^4.3.8",
"lodash": "^4.17.21",
"ngrok": "^4.0.1",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"tree-kill": "^1.2.2"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}