-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.9 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": "slackclone",
"version": "1.0.0",
"description": "Slack Clone built for Project Month at Pesto by CODERHOOD Group - Batch 8",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/pesto-students/batch-8-CODERHOOD.git"
},
"author": "sourabhmodi20051 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pesto-students/batch-8-CODERHOOD/issues"
},
"homepage": "https://github.com/pesto-students/batch-8-CODERHOOD#readme",
"scripts": {
"server": "cd server/ && yarn build && yarn start",
"server:dev": "cd server/ && yarn dev",
"client": "cd client/ && yarn start",
"start": "concurrently \"yarn server\" \"yarn client\"",
"dev": "concurrently \"yarn server:dev\" \"yarn client\"",
"postinstall": "yarn install:server",
"install:client": "cd client && yarn",
"install:server": "cd server && yarn",
"test:server": "cd server && yarn && yarn test",
"test:client": "cd client && yarn && yarn test",
"deploy:server:prod": "git push heroku master",
"deploy:client:dev": "cd client && yarn build && netlify deploy",
"deploy:client:prod": "cd client && yarn build && netlify deploy --prod",
"test": "yarn test:client && yarn test:server"
},
"devDependencies": {
"babel-eslint": "10.0.1",
"eslint": "^5.16.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-flowtype": "^3.9.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"react": "^16.8.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
},
"dependencies": {
"concurrently": "^4.1.1",
"eslint-config-airbnb": "^17.1.1",
"nodemailer": "^6.3.0"
}
}