forked from shoonyatech/wallora.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.86 KB
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
{
"name": "wallora",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p $PORT",
"test": "jest --coverage",
"export": "next build && next export",
"storybook": "start-storybook -p 6006 --no-dll -s ./public",
"build-storybook": "build-storybook",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"pretty": "prettier --write \"./**/*.{js,jsx,json,ts,tsx}\""
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint '*/**/*.{js,jsx,ts,tsx}' --fix",
"prettier --write \"./**/*.{js,jsx,json,ts,tsx}\""
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && jest --coverage --passWithNoTests",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"dependencies": {
"@apollo/client": "^3.3.19",
"@auth0/nextjs-auth0": "^1.3.1",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/styles": "^4.11.4",
"@storybook/react": "^6.2.9",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.5",
"apollo-client": "^2.6.10",
"apollo-link-rest": "^0.8.0-beta.0",
"axios": "^0.21.1",
"babel-jest": "^26.6.3",
"clsx": "^1.1.1",
"express": "^4.17.1",
"graphql": "^15.5.0",
"graphql-anywhere": "^4.2.7",
"jest": "^26.6.3",
"moment": "^2.29.1",
"next": "^10.0.0",
"postcss-preset-env": "^6.7.0",
"qs": "^6.10.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-use": "^17.2.4",
"recharts": "^2.0.9",
"storybook-addon-next-router": "^2.0.4"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^4.3.8",
"lint-staged": "^11.0.0",
"msw": "^0.29.0",
"postcss": "^8.3.5",
"prettier": "^2.3.0",
"tailwindcss": "^2.2.4",
"typescript": "^4.2.4"
},
"engines": {
"node": "14.x"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"msw": {
"workerDirectory": "public"
}
}