forked from Real-Dev-Squad/website-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.25 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
{
"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",
"test": "jest --coverage",
"test:watch": "jest --watch",
"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.12.11",
"chart.js": "2.9.4",
"eslint-plugin-jest": "^24.1.3",
"framer-motion": "^2.9.4",
"next": "^10.0.7",
"next-redux-wrapper": "^6.0.2",
"path-browserify": "^1.0.1",
"prop-types": "^15.7.2",
"react": "17.0.1",
"react-chartjs-2": "2.11.1",
"react-cookie": "^4.0.3",
"react-dom": "17.0.1",
"react-infinite-scroll-component": "^5.1.0",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@storybook/addon-actions": "^6.2.0-alpha.8",
"@storybook/addon-essentials": "^6.2.0-alpha.8",
"@storybook/addon-links": "^6.2.0-alpha.8",
"@storybook/react": "^6.2.0-alpha.8",
"@testing-library/react": "^11.2.2",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.7.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-better-styled-components": "^1.1.2",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-with-styles": "^2.3.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"local-ssl-proxy": "^1.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"npm run lint"
],
"./**/*.{js,jsx,ts,tsx,scss}": [
"npm run format"
]
}
}