-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
96 lines (96 loc) · 2.84 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
94
95
96
{
"name": "ndaify-web",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=14.2.0"
},
"dependencies": {
"@reach/dialog": "^0.10.0",
"@reach/menu-button": "^0.10.1",
"@sentry/browser": "^5.15.5",
"@sentry/node": "^5.15.5",
"@stripe/react-stripe-js": "^1.1.2",
"@stripe/stripe-js": "^1.5.0",
"@zeit/next-css": "^1.0.1",
"@zeit/next-source-maps": "^0.0.3",
"accept-language-parser": "^1.5.0",
"base64url": "^3.0.1",
"better-react-spinkit": "^2.0.4",
"cookie": "^0.4.1",
"cross-fetch": "^3.0.4",
"email-providers": "^1.9.0",
"formik": "^2.1.4",
"github-slugger": "^1.3.0",
"gray-matter": "^4.0.2",
"humps": "^2.0.1",
"ip": "^1.1.5",
"is-url": "^1.2.4",
"koa": "^2.11.0",
"koa-helmet": "^5.2.0",
"koa-router": "^8.0.8",
"lodash.debounce": "^4.0.8",
"mobx": "^4.2.0",
"next": "9.3.6",
"next-images": "^1.4.0",
"nookies": "^2.2.2",
"nprogress": "^0.2.0",
"openapi-snippet": "^0.8.1",
"path-to-regexp": "^6.1.0",
"pino": "^6.3.2",
"polished": "^3.6.3",
"react": "^16.13.1",
"react-alert": "^7.0.0",
"react-dom": "^16.13.1",
"react-intl": "^4.5.1",
"react-markdown": "^4.3.1",
"react-query": "^2.4.13",
"react-sane-contenteditable": "^1.6.1",
"react-spring": "^8.0.27",
"react-waypoint": "^9.0.2",
"redoc": "^2.0.0-rc.29",
"rtl-detect": "^1.0.2",
"sitemap": "^6.1.7",
"statuses": "^2.0.0",
"string-score": "^1.0.1",
"styled-components": "^5.1.0",
"tlds": "^1.207.0",
"ua-parser-js": "^0.7.21",
"use-clipboard-copy": "^0.1.2"
},
"scripts": {
"dev": "babel-node -r dotenv/config src/server.js",
"build": "next build && babel src/ -d .next/dist",
"start": "node .next/dist/server.js",
"set-secrets": "cat .env.prod | tr '\n' ' ' | xargs flyctl secrets set",
"lint": "eslint src/",
"test": "yarn lint && jest",
"extract-i18n": "extract-messages --overwriteDefault true --defaultLocale en --locales=en,es,zh --flat true --output src/langs './src/**/!(*.test).js'"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"babel-eslint": "^8.2.6",
"babel-plugin-inline-react-svg": "^1.1.1",
"babel-plugin-styled-components": "^1.10.7",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"extract-react-intl-messages": "^4.1.1",
"husky": "^4.2.5",
"jest": "^25.5.4",
"pino-pretty": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn test && yarn extract-i18n"
}
}
}