forked from Real-Dev-Squad/website-status
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.62 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
{
"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": "next build",
"start": "next start -p $PORT",
"test": "jest --watch",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/Real-Dev-Squad/website-status.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"axios": "^0.24.0",
"husky": "^7.0.4",
"moment": "^2.29.1",
"next": "12",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^17.0.2",
"react-toastify": "^8.1.0",
"sass": "^1.45.2",
"sass-loader": "^12.4.0",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"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",
"@types/next": "^9.0.0",
"@types/node": "^17.0.5",
"@types/react": "^17.0.38",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"babel-jest": "^27.4.5",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"eslint": "^8.6.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.5",
"lint-staged": "^12.1.4",
"local-ssl-proxy": "^1.3.0",
"next-page-tester": "^0.30.0",
"npm-run-all": "^4.1.5",
"pinst": "^2.1.6",
"react-test-renderer": "^17.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.65.0"
},
"engines": {
"node": "16.x"
},
"lint-staged": {
"*.+(ts|tsx)": [
"eslint ."
]
}
}