-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "base",
"version": "1.0.0",
"main": ".C:\\Users\\Riz\\Desktop\\base\\pkgs\\main\\build\\index.js",
"author": "rizky",
"private": true,
"license": "MIT",
"scripts": {
"test": "node ./pkgs/boot/src/test.js",
"start": "node ./pkgs/boot/src/start.js dev",
"dev": "node ./pkgs/boot/src/start.js dev",
"prod": "node ./pkgs/boot/src/prod.js",
"prisma": "cd app/db && npx prisma db pull && npx prisma generate",
"base": "node ./base.js",
"figma": "node ./pkgs/figma/src/init.js",
"db": "npm -w=db",
"web": "npm -w=web-app",
"web.init": "npm -w=web.init",
"mobile": "npm -w=mobile",
"server": "npm -w=server",
"main": "npm -w=main",
"ui": "npm -w=ui",
"boot": "npm -w=boot",
"utils": "npm -w=utils",
"builder": "npm -w=builder",
"libs": "npm -w=libs",
"platform": "npm -w=platform",
"postinstall": "patch-package && node base clean"
},
"workspaces": [
"pkgs/*",
"app/*",
"test",
"pkgs/web/*"
],
"dependencies": {
"@playwright/test": "^1.14.1",
"@prisma/client": "^3.7.0",
"autoprefixer": "^10.2.5",
"execa": "^5.0.0",
"fs-extra": "^9.1.0",
"globby": "^11.0.3",
"isomorphic-git": "^1.8.1",
"patch-package": "^6.4.7",
"postcss": "^8.2.8",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.2.1",
"react-chartjs-2": "^3.3.0",
"react-color": "^2.19.3",
"tslib": "1.14.1",
"typescript": "^4.2.3"
},
"devDependencies": {
"prisma": "^3.7.0"
}
}