-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1007 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
32
33
34
35
36
37
38
39
40
41
{
"name": "gameoflife-repo",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"webservice/*"
],
"scripts": {
"build": "dotenv -- turbo run build",
"dev": "dotenv -- turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"dotenv-cli": "^7.0.0",
"eslint-config-custom": "*",
"prettier": "latest",
"prettier-plugin-tailwindcss": "^0.2.1",
"turbo": "latest"
},
"engines": {
"node": ">=14.0.0"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} ./apps/webservice/prisma/seed.ts"
},
"dependencies": {
"@types/react-dom": "^18.0.11",
"autoprefixer": "^10.4.13",
"daisyui": "^2.46.1",
"encoding": "^0.1.13",
"gameoflife": "^1.1.2",
"graphql-request": "^5.1.0",
"immer": "^9.0.19",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.4"
},
"packageManager": "yarn@1.22.19"
}