-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.7 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
{
"name": "doar-casa-damiao",
"version": "0.1.0",
"private": true,
"lint-staged": {
"{components,constants,helpers,pages,public,server,styles}/**/*.{js,jsx,ts,tsx,md,json}": [
"npm run lint:fix",
"npm run format"
],
"{components,constants,helpers,pages,public,server,styles}/**/*.css": [
"npm run format"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write '{components,constants,helpers,pages,public,server,styles}/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"dependencies": {
"@stripe/react-stripe-js": "^1.1.2",
"@stripe/stripe-js": "^1.9.0",
"axios": "^0.20.0",
"jsonschema": "^1.3.0",
"local-storage": "^2.0.0",
"lodash": "^4.17.20",
"mailgun-js": "^0.22.0",
"mongoose": "^5.10.9",
"mysql": "^2.18.1",
"next": "9.5.3",
"rc-progress": "^3.1.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"shuffle-array": "^1.0.1",
"stripe": "^8.114.0"
},
"devDependencies": {
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.0",
"prettier": "^2.1.2"
}
}