-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.59 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
{
"name": "futura-react",
"packageManager": "[email protected]",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"clean:output": "rm -rf dist",
"build:styles": "tailwindcss -i ./styles/globals.css -o ./dist/styles.css -c ./tailwind.lib.config.js",
"build:source": "babel ./uikit --out-dir ./dist --extensions '.ts,.tsx,.js' --config-file ./configs/.babelrc",
"build:lib": "yarn clean:output && yarn build:source && yarn build:styles"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.0.1",
"@radix-ui/react-icons": "^1.1.1",
"@radix-ui/react-popover": "^1.0.2"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/node": "^18.11.4",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-table": "^7.7.12",
"autoprefixer": "^10.4.12",
"classnames": "^2.3.2",
"eslint": "^8.26.0",
"eslint-config-next": "^12.3.1",
"eslint-config-prettier": "^8.5.0",
"hast-util-to-html": "^8.0.3",
"next": "^13.0.0",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-table": "^7.8.0",
"refractor": "^4.8.0",
"tailwindcss": "^3.2.1",
"typescript": "^4.8.4"
},
"peerDependencies": {
"classnames": "^2.3.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}