forked from WYGIN/real-dev-squard-website-status
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.04 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
104
105
{
"name": "status",
"version": "1.0.0",
"description": "Shows a status of the ongoing projects being done",
"main": "index.js",
"scripts": {
"run-command:dev-server": "next dev -p 3000",
"run-command:reverse-ssl": "local-ssl-proxy --source 443 --target 3000",
"dev": "run-p run-command:*",
"build:staging":"cp .env.development .env.local && next build",
"build": "next build",
"start": "next start -p $PORT",
"test": "jest --coverage",
"lint": "next lint",
"lint-fix": "eslint . --fix --ext js,jsx,ts,tsx",
"postinstall": "husky install",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook",
"prettier": "npx prettier src __tests__ --check",
"prettier:fix": "npm run prettier -- --write"
},
"repository": {
"type": "git",
"url": "https://github.com/Real-Dev-Squad/website-status.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@reduxjs/toolkit": "^1.9.1",
"axios": "^1.2.2",
"moment": "^2.29.4",
"next": "^13.1.1",
"next-redux-wrapper": "^8.1.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-toastify": "^9.0.8",
"sass": "^1.45.2",
"sass-loader": "^13.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/builder-webpack5": "^6.4.9",
"@storybook/manager-webpack5": "^6.4.9",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.4.9",
"@testing-library/dom": "^9.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@types/next": "^9.0.0",
"@types/node": "^18.7.8",
"@types/react": "^18.0.17",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "^18.0.6",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^13.3.0",
"@types/jest": "^29.2.5",
"typescript": "^4.5.4",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.2",
"css-loader": "^6.5.1",
"eslint": "^8.6.0",
"eslint-config-next": "^13.1.1",
"eslint-plugin-react": "^7.32.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-mock-axios": "^4.5.0",
"lint-staged": "^13.1.0",
"local-ssl-proxy": "^1.3.0",
"msw": "^0.49.2",
"npm-run-all": "^4.1.5",
"pinst": "^3.0.0",
"react-hooks-testing-library": "^0.6.0",
"react-test-renderer": "^18.2.0",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.3",
"webpack": "^5.76.0",
"whatwg-fetch": "^3.6.2",
"husky": "8.0.3"
},
"engines": {
"node": "18.x"
},
"lint-staged": {
"*.+(ts|tsx)": [
"eslint ."
]
},
"msw": {
"workerDirectory": "public"
},
"volta": {
"node": "18.14.2",
"yarn": "1.22.19"
}
}