-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 885 Bytes
/
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
{
"name": "cupcake",
"version": "1.0.0",
"private": true,
"license": "UNLICENSED",
"workspaces": [
"modules/*"
],
"engines": {
"node": "12"
},
"scripts": {
"domain": "yarn workspace @cupcake/domain",
"services": "yarn workspace @cupcake/services",
"graph": "yarn workspace @cupcake/graph",
"ui": "yarn workspace @cupcake/ui",
"dev": "concurrently -n 'UI,GRAPH' 'graphUrl=\"http://localhost:8888\" yarn ui dev' 'yarn graph dev'",
"validate": "yarn lint:pretty && yarn lint:tsc && yarn test",
"lint:pretty": "prettier -c 'modules/**/*.{ts,tsx}'",
"lint:tsc": "tsc --noEmit --noUnusedParameters --noUnusedLocals",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"concurrently": "^5.3.0",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"ts-jest": "^25.2.0",
"typescript": "^3.7.5"
}
}