-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.15 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
{
"name": "donation-page",
"version": "1.0.0",
"description": "Coderplex Foundation is a registered non-profit organization that is working towards improving the state of tech in India.",
"repository": {
"type": "git",
"url": "git+https://github.com/coderplex/donation-page.git"
},
"bugs": {
"url": "https://github.com/coderplex/donation-page/issues"
},
"homepage": "https://github.com/coderplex/donation-page#readme",
"main": "src/pages/index.ts",
"engines": {
"node": "v12.x"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "next",
"add-contributor": "all-contributors add",
"format": "prettier --write './**/*.+(ts|tsx|css|json|js|jsx|json|md)'"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@types/airtable": "^0.8.0",
"@zeit/next-css": "0.2.1-canary.4",
"airtable": "^0.8.1",
"clsx": "^1.0.4",
"copee": "^1.0.6",
"cuid": "^2.1.6",
"fromnow": "^3.0.1",
"is-mobile": "^2.0.1",
"isomorphic-unfetch": "^3.0.0",
"md.js": "^0.2.6",
"next": "^9.4.4",
"nprogress": "^0.2.0",
"qrcode.react": "^0.9.3",
"razorpay": "^2.0.6",
"react": "^16.8.6",
"react-div-100vh": "^0.3.4",
"react-dom": "^16.8.6",
"react-useportal": "^1.0.13",
"react-virtualized-auto-sizer": "^1.0.2",
"react-window": "^1.8.5",
"swr": "^0.1.12"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^1.3.0",
"@types/node": "^12.12.12",
"@types/react": "^16.9.12",
"@types/react-dom": "^16.9.4",
"all-contributors-cli": "^6.8.1",
"autoprefixer": "^9.6.1",
"cssnano": "^4.1.10",
"husky": "^3.0.2",
"lint-staged": "^9.2.1",
"next-manifest": "^2.0.0",
"next-purgecss": "^3.1.1",
"postcss-easy-import": "^3.0.0",
"postcss-nesting": "^7.0.1",
"prettier": "^1.18.2",
"tailwindcss": "^1.0.5",
"typescript": "^3.7.2"
},
"lint-staged": {
"*.{js,ts,tsx,jsx,json,css}": [
"prettier --write",
"git add"
],
"**/*.md": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}