-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.84 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.84 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "runner-web-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p $PORT",
"test": "jest --watch",
"lint": "next lint",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"@memberstack/react": "^2.0.1",
"@popperjs/core": "^2.11.6",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.8",
"eslint": "8.27.0",
"eslint-config-next": "13.0.3",
"guid-typescript": "^1.0.9",
"moment": "^2.29.4",
"next": "13.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-pro-sidebar": "^1.0.0-alpha.9",
"react-router-dom": "^6.4.5",
"storybook-addon-sass-postcss": "^0.1.3",
"typescript": "4.8.4",
"typescript-guid": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@faker-js/faker": "^7.6.0",
"@storybook/addon-actions": "^6.5.14",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-interactions": "^6.5.14",
"@storybook/addon-links": "^6.5.14",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.14",
"@storybook/manager-webpack5": "^6.5.14",
"@storybook/react": "^6.5.14",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.3.0",
"eslint-plugin-storybook": "^0.6.8",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"msw": "^0.49.1",
"postcss": "^8.4.19",
"postcss-loader": "^7.0.2",
"sass": "^1.56.2",
"tailwindcss": "^3.2.4",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"webpack": "^5.75.0"
},
"msw": {
"workerDirectory": "public"
}
}