generated from Real-Dev-Squad/website-template
-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
89 lines (89 loc) · 2.61 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
{
"name": "micro-transaction",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm-run-all --parallel dev:*",
"dev:next": "next dev -p 3443",
"dev:https-link": "local-ssl-proxy --source 443 --target 3443",
"build": "next build",
"start": "next start -p $PORT",
"build-static": "next build && next export",
"cy:open": "cypress open",
"test:unit": "jest --coverage __tests__/unit",
"test:watch": "jest --watch",
"test:cy": "cypress run",
"test": "npm run test:jest && npm run test:cy",
"lint": "eslint --fix . && echo 'Lint complete.'",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,scss,md,json}\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.17.3",
"chart.js": "2.9.4",
"eslint-plugin-jest": "^24.7.0",
"framer-motion": "^2.9.5",
"jest-mock-axios": "^4.6.1",
"next": "13",
"next-redux-wrapper": "^6.0.2",
"path-browserify": "^1.0.1",
"prop-types": "^15.8.1",
"react": "18",
"react-chartjs-2": "2.11.1",
"react-cookie": "^4.1.1",
"react-dom": "^18.2.0",
"react-infinite-scroll-component": "^5.1.0",
"react-redux": "^7.2.8",
"redux": "^4.1.2",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/react": "^6.4.22",
"@testing-library/react": "^11.2.7",
"autoprefixer": "^10.4.8",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.4",
"babel-preset-env": "^1.7.0",
"cypress": "^10.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-better-styled-components": "^1.1.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-react-with-styles": "^2.4.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"local-ssl-proxy": "^1.3.0",
"msw": "^0.47.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"prettier": "^2.6.2",
"tailwindcss": "^3.1.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"yarn run lint"
],
"./**/*.{js,jsx,ts,tsx,scss}": [
"yarn run format"
]
},
"volta": {
"node": "18.18.2",
"yarn": "1.22.19"
}
}