-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "drinko",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=12.8.0"
},
"main": "index.js",
"scripts": {
"dev": "next",
"dev:debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"next": "latest",
"next-optimized-images": "^3.0.0-canary.10",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-optimized-image": "^0.4.1",
"react-transition-group": "^4.4.1",
"sharp": "^0.26.0"
},
"license": "MIT",
"devDependencies": {
"@storybook/addon-actions": "6.0.21",
"@storybook/addon-essentials": "^6.0.21",
"@storybook/addon-links": "6.0.21",
"@storybook/addons": "6.0.21",
"@storybook/node-logger": "^6.0.21",
"@storybook/react": "6.0.21",
"@types/react-transition-group": "^4.4.0",
"@types/sharp": "^0.26.0",
"babel-loader": "^8.1.0",
"babel-plugin-inline-react-svg": "^1.1.1",
"next-compose-plugins": "^2.2.0",
"react-is": "^16.13.1",
"typescript": "^4.0.2"
}
}