-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 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
{
"name": "saas-app",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "jest"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"axios": "^0.24.0",
"next": "^12.0.1",
"next-connect": "^0.11.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"swr": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/react": "^6.3.12",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.33",
"babel-loader": "^8.2.3",
"eslint": "^8.1.0",
"eslint-config-next": "^12.0.1",
"jest": "^27.3.1",
"storybook-addon-material-ui": "^0.9.0-alpha.24",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}