-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 922 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
{
"name": "next-typescript-storybook",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"storybook": "start-storybook -p 6006 -c .storybook",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Alexander Lapygin <alexanderlapygin@gmail.com> (https://github.com/capcross)",
"license": "MIT",
"dependencies": {
"next": "^9.3.2",
"react": "^16.11.0",
"react-dom": "^16.11.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@storybook/react": "^5.2.6",
"@types/next": "^8.0.7",
"@types/node": "^12.12.7",
"@types/storybook__react": "^4.0.2",
"@zeit/next-typescript": "^1.1.1",
"babel-loader": "^8.0.6",
"babel-preset-react-app": "^9.0.2",
"fork-ts-checker-webpack-plugin": "^3.1.0",
"typescript": "^3.7.2"
}
}