-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
85 lines (85 loc) · 2.29 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
{
"name": "svstamp",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "npm test -- --coverage",
"test:badge": "npm run test:coverage && make-coverage-badge",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write ./**/*.{ts,css}"
},
"author": "Ricardo Ramírez",
"license": "MIT",
"dependencies": {
"@fullhuman/postcss-purgecss": "^2.2.0",
"@types/cheerio": "^0.22.18",
"@types/cors": "^2.8.6",
"@types/jest": "^25.2.3",
"@types/lodash": "^4.14.155",
"@types/mongodb": "^3.5.20",
"@types/react-select": "^3.0.13",
"autoprefixer": "^9.8.0",
"cheerio": "^1.0.0-rc.3",
"cors": "^2.8.5",
"dayjs": "^1.8.28",
"isomorphic-unfetch": "^3.0.0",
"lodash": "^4.17.19",
"mongodb": "^3.5.7",
"next": "^9.4.0",
"next-connect": "^0.6.6",
"postcss-import": "^12.0.1",
"react": "^16.13.1",
"react-clipboard.js": "^2.0.16",
"react-content-loader": "^5.0.4",
"react-dom": "^16.13.1",
"react-feather": "^2.0.8",
"react-select": "^3.1.0",
"sweetalert2": "^9.10.13",
"tailwindcss": "^1.4.6"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@testing-library/react": "^10.0.4",
"@types/node": "^14.0.11",
"@types/react": "^16.9.35",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.6",
"make-coverage-badge": "^1.2.0",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.1",
"typescript": "^3.9.5"
},
"jest": {
"coverageReporters": [
"json-summary"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run format"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}