forked from maany/rucio-webui-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.15 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "rucio-webui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --projects test/api/jest.api.config.js test/component/jest.component.config.js",
"test:api": "jest --projects test/api/jest.api.config.js",
"test:component": "jest --projects test/component/jest.component.config.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-tailwind": "tailwindcss -i src/component-library/tailwind.css -o src/component-library/outputtailwind.css"
},
"dependencies": {
"@next/font": "13.1.6",
"@primer/css": "^20.8.2",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"bulma": "^0.9.4",
"bulma-checkradio": "^2.1.3",
"bulma-steps": "^2.2.1",
"bulma-switch": "^2.0.4",
"inversify": "^6.0.1",
"iron-session": "^6.3.1",
"next": "13.1.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"reflect-metadata": "^0.1.13",
"swr": "^2.0.3",
"tailwindcss": "^3.2.7",
"typescript": "4.9.5",
"util": "^0.12.5"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@storybook/addon-actions": "^7.0.0-beta.49",
"@storybook/addon-essentials": "^7.0.0-beta.49",
"@storybook/addon-interactions": "^7.0.0-beta.49",
"@storybook/addon-links": "^7.0.0-beta.49",
"@storybook/nextjs": "^7.0.0-beta.49",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^7.0.0-beta.49",
"@storybook/testing-library": "^0.0.14-next.1",
"@inrupt/jest-jsdom-polyfills": "^1.5.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"babel-loader": "^8.3.0",
"css-loader": "^6.7.3",
"eslint-plugin-storybook": "^0.6.10",
"eslint": "^8.34.0",
"eslint-config-next": "^13.1.6",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-fetch-mock": "^3.0.3",
"node-mocks-http": "^1.12.1",
"sass": "^1.58.1",
"sass-loader": "^13.2.0",
"storybook": "^7.0.0-beta.49",
"style-loader": "^3.3.1",
"prettier": "^2.8.4",
"ts-node": "^10.9.1"
}
}