-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.3 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
{
"name": "dot.gallery",
"version": "1.0.0",
"description": "dot.gallery",
"main": "index.js",
"engines": {
"node": "10.x"
},
"repository": "https://github.com/xlnt/dot.gallery",
"author": "Matt Condon (shrugs)",
"license": "GPL-3.0-or-later",
"private": true,
"scripts": {
"start": "concurrently --handle-input --names 'br,g' 'yarn backroom' 'yarn gallery'",
"gallery": "lerna exec --scope gallery yarn start",
"backroom": "lerna exec --scope backroom yarn start",
"codegen": "lerna exec --scope prisma yarn codegen",
"prisma": "lerna exec --scope prisma yarn deploy",
"lint": "lerna exec --scope backroom --scope gallery yarn lint",
"lint:fix": "lerna exec --scope backroom --scope gallery yarn lint:fix",
"now-build": "lerna exec --scope gallery -- yarn build -d ../../public"
},
"devDependencies": {
"@types/node": "^12.7.2",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"concurrently": "^4.1.2",
"eslint": "^6.2.2",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.4.0",
"ganache-cli": "^6.6.0",
"lerna": "^3.16.4",
"prettier": "^1.18.2",
"typescript": "^3.6.2"
},
"workspaces": [
"packages/*"
]
}