-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.03 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
{
"private": true,
"workspaces": [
"repos/libs/*",
"repos/react/*",
"repos/nodejs/*"
],
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-react": "^7.13.13",
"@parcel/babel-plugin-transform-runtime": "^2.0.0-nightly.1823",
"@parcel/babel-preset-env": "^2.0.0-alpha.3",
"babel-plugin-relay": "^11.0.2",
"get-graphql-schema": "^2.1.2",
"graphql": "^15.5.0",
"mariadb": "^2.5.3",
"nodemon": "^2.0.7",
"parcel": "^2.0.0-beta.3.1",
"relay-compiler": "^11.0.2",
"sqlite3": "^5.0.2"
},
"scripts": {
"server": "nodemon ./repos/nodejs/server/src/index.mjs",
"admin": "parcel ./repos/react/admin/src/index.html",
"admin_gql_schema": "get-graphql-schema $(cat docker/.env | grep BACKEND_GQL_API_URL | cut -d'=' -f 2) > ./repos/react/admin/schema.graphql",
"relay": "relay-compiler --src ./repos/react/admin/src --schema ./repos/react/admin/schema.graphql --extensions jsx"
}
}