-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.02 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
{
"name": "ode-app",
"version": "0.0.1",
"description": "Web Pipeline For Kinetic (ODE-Based) Models",
"repository": "https://github.com/HelikarLab/ode-app.git",
"author": "Mohamed Shadab <[email protected]>",
"license": "UNLICENSED",
"private": true,
"workspaces": [
"client",
"server"
],
"scripts": {
"client:start": "cd client&&yarn start",
"client:build": "cd client&&yarn build",
"cypress": "cypress open",
"dev": "concurrently \"yarn client:start\" \"yarn server:start\"",
"server:start": "cd server&&yarn start",
"server:build": "cd server&&yarn build",
"test": "concurrently \"yarn client:start\" \"yarn server:start\" \"yarn cypress\""
},
"devDependencies": {
"concurrently": "^5.0.0",
"cypress": "3.6.0",
"cypress-file-upload": "^3.3.3",
"eslint-plugin-cypress": "^2.6.1",
"husky": "^3.0.1"
},
"husky": {
"hooks": {
"pre-commit": "cd client && yarn build && cd .. && git add ./client/build"
}
}
}