-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.27 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "code-library-client",
"version": "1.0.0",
"description": "The NextJs Client of the CODE University of Applied Sciences Library Management System",
"main": "dist/index",
"typings": "dist/index",
"scripts": {
"dev": "NODE_ENV=development next dev",
"update:perms": "npm uninstall code-library-perms && npm i --S https://github.com/the-library-guild/code-library-perms.git",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest",
"test:coverage": "jest --coverage",
"lint": "next lint --fix",
"prettify": "prettier --config .prettierrc 'src/**/*.ts' --write",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "https://github.com/the-library-guild/code-library-app.git"
},
"contributors": [
{
"name": "Linus Bolls",
"email": "linus.bolls@code.berlin",
"url": "https://github.com/LinusBolls"
},
{
"name": "Marcelo T. dos Santos",
"email": "marcelo.teixeira@code.berlin",
"url": "https://github.com/Marcelixoo"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/the-library-guild/code-library-app/issues"
},
"homepage": "https://github.com/the-library-guild/code-library-app#readme",
"dependencies": {
"@apollo/client": "^3.6.2",
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.8",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@storybook/addon-a11y": "^6.5.9",
"chalk": "^5.0.1",
"code-library-perms": "git+https://git@github.com/the-library-guild/code-library-perms.git",
"dotenv": "^16.0.0",
"framer-motion": "^4.1.17",
"graphql": "^16.5.0",
"jose": "^4.8.1",
"nanoid": "^3.3.4",
"next": "^12.0.10",
"next-auth": "^4.3.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-infinite-scroll-hook": "^4.0.3"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@next/eslint-plugin-next": "^12.1.6",
"@storybook/addon-actions": "^6.5.8",
"@storybook/addon-essentials": "^6.5.8",
"@storybook/addon-interactions": "^6.5.8",
"@storybook/addon-links": "^6.5.8",
"@storybook/builder-webpack5": "^6.5.8",
"@storybook/manager-webpack5": "^6.5.8",
"@storybook/react": "^6.5.8",
"@storybook/testing-library": "^0.0.11",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.4",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.31",
"@types/react": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"babel-loader": "^8.2.5",
"cross-fetch": "^3.1.5",
"eslint": "^8.15.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-storybook": "^0.5.12",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"msw": "^0.41.0",
"msw-storybook-addon": "^1.6.3",
"prettier": "^2.6.2",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.6.4",
"webpack": "^5.72.0"
},
"engines": {
"node": "16.x"
},
"msw": {
"workerDirectory": "public"
}
}