-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.11 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
{
"name": "manulife-demo",
"version": "0.1.0",
"private": true,
"dependencies": {},
"proxy": "http://localhost:8080",
"scripts": {
"deploy-heroku": "git subtree push --prefix production heroku master",
"frontend": "cd ./frontend && npm run start",
"server": "cd ./server && node server.js",
"start": "cross-os start",
"update": "npm i cross-os && cross-os update",
"update:frontend": "cd ./frontend && npm i",
"update:server": "cd ./server && npm i"
},
"cross-os": {
"start": {
"win32": "start npm run frontend && start npm run server",
"darwin": "ttab -w npm run frontend && ttab -w npm run server"
},
"update": {
"win32": "npm i && npm run update:frontend && npm run update:server",
"darwin": "npm i -g ttab && npm i && npm run update:frontend && npm run update:server"
}
},
"devDependencies": {
"cross-os": "^1.3.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0"
}
}