-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 KB
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
{
"name": "@g-loot/css-framework",
"scripts": {
"dev": "next dev",
"build": "next build 2> build-error.log",
"start": "next start",
"lint": "next lint",
"build:framework": "./build-framework.sh",
"deploy:framework": "npm run build:framework && cd framework && npm publish"
},
"devDependencies": {
"@headlessui/react": "^1.6.2",
"autoprefixer": "^10.4.7",
"classnames": "^2.3.1",
"eslint": "^8.16.0",
"eslint-config-next": "^12.1.6",
"lottie-react": "^2.3.1",
"moment": "^2.29.4",
"next": "^12.1.6",
"postcss": "^8.4.30",
"postcss-loader": "^7.0.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-parallax": "^3.5.1",
"react-popper-tooltip": "^4.4.2",
"styled-components": "^4.1.3",
"tailwindcss": "^3.2"
},
"files": [
"assets/styles/*",
"tailwind.config.js"
],
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.1",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.1",
"react-select": "^5.7.2",
"react-spring": "^9.6.1",
"react-swipeable": "^7.0.0"
}
}