-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.3 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
{
"name": "simpodo",
"version": "0.3.2",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:client": "jest --watch --projects jest.client.config.js",
"test:server": "jest --watch --projects jest.server.config.js",
"test:generate-output": "jest --json --outputFile=.jest-test-results.json",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"jest": {
"projects": [
"./jest.client.config.js",
"./jest.server.config.js"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@reduxjs/toolkit": "^1.8.3",
"@storybook/addon-jest": "^6.5.9",
"axios": "^0.27.2",
"dayjs": "^1.11.3",
"mongoose": "^6.4.1",
"next": "12.2.0",
"next-redux-wrapper": "^7.0.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-draggable": "^4.4.5",
"react-redux": "^8.0.2",
"react-transition-group": "^4.4.2",
"styled-components": "^5.3.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-transform-reserved-words": "^7.18.6",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-transition-group": "^4.4.5",
"@types/styled-components": "^5.1.25",
"@types/uuid": "^8.3.4",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"babel-loader": "^8.2.5",
"eslint": "8.18.0",
"eslint-config-next": "12.2.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-storybook": "^0.5.13",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"jest-styled-components": "^7.0.8",
"mongodb-memory-server": "^8.7.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0"
}
}