-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
39 lines (39 loc) · 944 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
{
"name": "website",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "NODE_ENV=development turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"generate:videos": "turbo run generate:videos"
},
"devDependencies": {
"@storybook/addon-docs": "^6.5.13",
"eslint-config-czstr": "*",
"next-transpile-modules": "^10.0.0",
"prettier": "^2.7.1",
"turbo": "^1.6.1"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@types/node": "^18.11.9",
"dotenv": "^16.3.1",
"framer-motion": "^7.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.6.0",
"react-share": "^4.4.1"
}
}