-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
51 lines (51 loc) · 1.72 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
{
"name": "explorer",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"turbo": "turbo",
"build": "turbo run build",
"export": "turbo run export",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "dotenv -c test -- turbo run test",
"test:ci": "dotenv -c test -- turbo run test:ci",
"db:generate": "turbo run db:generate",
"db:dev:migrate": "turbo run db:dev:migrate",
"db:prod:migrate": "turbo run db:prod:migrate",
"build-storybook": "turbo run build-storybook",
"storybook": "turbo run storybook",
"format:check": "prettier --check \"**/*.{ts,tsx}\"",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"coveralls": "mkdir coverage && ./node_modules/.bin/lcov-result-merger './!(node_modules)**/**/coverage/lcov.info' './coverage/lcov.info' --prepend-source-files"
},
"devDependencies": {
"dotenv-cli": "7.2.1",
"eslint-config-custom": "*",
"prettier": "latest",
"turbo": "latest",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1"
},
"engines": {
"node": ">=18.17"
},
"dependencies": {
"@chakra-ui/icons": "2.0.12",
"@chakra-ui/react": "2.4.4",
"@chakra-ui/theme-tools": "2.0.12",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@unleash/proxy-client-react": "3.6.0",
"framer-motion": "10.13.0",
"lcov-result-merger": "4.1.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"unleash-proxy-client": "2.5.0"
},
"packageManager": "[email protected]"
}