-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.44 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
86
87
88
89
90
91
92
93
{
"name": "cp-events-web",
"version": "2.0.0",
"description": "A platform for running events, workshops or courses",
"main": "index.js",
"scripts": {
"dev": "node server",
"build": "next build",
"start": "node server"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:compassionprojects/events-web.git"
},
"keywords": [
"vic",
"nvc"
],
"author": "Madhusudhan Srinivasa <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/compassionprojects/events-web/issues"
},
"homepage": "https://github.com/compassionprojects/events-web#readme",
"engines": {
"node": "16.x",
"npm": "8.x"
},
"dependencies": {
"@apollo/react-hooks": "~3.1.5",
"@stripe/stripe-js": "~1.9.0",
"accept-language-parser": "~1.5.0",
"apollo-boost": "~0.4.9",
"body-parser": "~1.19.0",
"classnames": "~2.2.6",
"cookie": "~0.4.1",
"cookie-parser": "~1.4.5",
"dotenv": "~8.2.0",
"express": "~4.17.1",
"graphql": "~15.3.0",
"helmet": "~3.23.3",
"http-proxy-middleware": "~2.0.6",
"husky": "~4.2.5",
"js-cookie": "~2.2.1",
"lint-staged": "~10.2.11",
"mailchimp-api-v3": "~1.14.0",
"md5.js": "~1.3.5",
"moment": "~2.27.0",
"moment-shortformat": "~2.1.0",
"moment-timezone": "~0.5.31",
"next": "~9.5.5",
"next-cookies": "~2.0.3",
"node-fetch": "~2.6.0",
"prop-types": "~15.7.2",
"react": "~16.13.1",
"react-dom": "~16.13.1",
"react-gravatar": "~2.6.3",
"react-markdown": "~4.3.1",
"reactstrap": "~8.5.1",
"scroll-to-element": "~2.0.3",
"stripe": "~8.96.0",
"striptags": "~3.1.1",
"styled-components": "~5.1.1",
"truncate": "~2.1.0"
},
"devDependencies": {
"@types/node": "~14.0.14",
"@types/react": "~16.9.41",
"@typescript-eslint/eslint-plugin": "~3.5.0",
"@typescript-eslint/parser": "~3.5.0",
"babel-plugin-module-resolver": "~4.1.0",
"babel-plugin-styled-components": "~1.10.7",
"eslint": "~7.3.1",
"eslint-config-prettier": "~6.11.0",
"eslint-import-resolver-babel-module": "~5.2.0",
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-prettier": "~3.1.4",
"eslint-plugin-react": "~7.20.2",
"eslint-plugin-react-hooks": "~4.2.0",
"prettier": "~2.0.5",
"typescript": "~3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}