-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 746 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 746 Bytes
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
{
"name": "mess-with-node-in-docker",
"version": "1.0.0",
"scripts": {
"dev": "NODE_OPTIONS='--inspect=0.0.0.0' next",
"build": "next build",
"start": "next start",
"storybook": "start-storybook --port 6006 --config-dir .storybook --quiet",
"test:unit": "jest"
},
"dependencies": {
"next": "^9.0.5",
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"devDependencies": {
"@storybook/react": "^5.1.11",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.4",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/storybook__react": "^4.0.2",
"fork-ts-checker-webpack-plugin": "^1.5.0",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"typescript": "^3.6.2"
}
}