-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.67 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.67 KB
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": "eletronica-2",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/dotenv-safe": "^5.0.3",
"@types/graphql": "^14.2.1",
"@types/graphql-relay": "^0.4.9",
"@types/johnny-five": "^0.0.40",
"@types/jsonwebtoken": "^8.3.2",
"@types/koa": "^2.0.48",
"@types/koa-router": "^7.0.41",
"@types/mongoose": "^5.5.6",
"@types/reach__router": "^1.2.4",
"@types/react": "^16.8.18",
"@types/react-dom": "^16.8.4",
"@types/react-relay": "^5.0.0",
"@types/socket.io": "^2.1.2",
"@types/styled-components": "^4.1.16",
"@types/yup": "^0.26.16",
"lerna": "^3.15.0",
"nodemon": "^1.19.1",
"relay-compiler-language-typescript": "^4.3.0",
"source-map-loader": "^0.2.4",
"typescript": "^3.4.5"
},
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces",
"build:packages": "lerna exec --parallel -- babel src -d build --extensions \".ts,.tsx\" --ignore **/*.story.js,**/*.spec.js",
"web:start": "yarn workspace @gsasouza/web start",
"web:build": "yarn workspace @gsasouza/web build",
"web:relay": "yarn workspace @gsasouza/web relay",
"web:serve": "yarn workspace @gsasouza/web serve",
"server:start": "yarn workspace @gsasouza/server start",
"server:serve": "yarn workspace @gsasouza/server serve",
"server:update-schema": "yarn workspace @gsasouza/server update-schema",
"interface:start": "yarn workspace @gsasouza/interface start",
"repl": "yarn workspace @gsasouza/shared repl",
"heroku-postbuild": "yarn build:packages && yarn bootstrap && yarn web:relay && yarn web:build"
}
}