This repository has been archived by the owner on Jul 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.1 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
{
"name": "toiletpaper",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"code:check": "yarn code:lint; yarn code:format --check",
"code:clean": "yarn code:lint --fix; yarn code:format --write",
"code:lint": "eslint --ext .js,.jsx,.ts,.tsx \"src/\"",
"code:format": "prettier './src/**/**.{js,jsx,ts,tsx}'",
"code:check:rules": "eslint --print-config .eslintrc.js | eslint-config-prettier-check"
},
"dependencies": {
"@sindresorhus/class-names": "^1.1.0",
"@stripe/react-stripe-js": "^1.1.2",
"@stripe/stripe-js": "^1.3.1",
"@welldone-software/why-did-you-render": "^4.0.6",
"@xstate/react": "^0.8.1",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"color": "^3.1.2",
"currency-symbol-map": "^4.0.4",
"dayjs": "^1.8.23",
"dotenv": "^8.2.0",
"evt": "^1.4.2",
"google-spreadsheet": "^3.0.10",
"mustache": "^4.0.1",
"next": "9.3.4",
"nextjs-sitemap-generator": "^0.5.0",
"node-fetch": "^2.6.0",
"nodemailer": "^6.4.6",
"rc-input-number": "^4.5.6",
"rc-notification": "^4.0.0",
"react": "16.13.1",
"react-animated-text": "^0.1.4",
"react-country-region-selector": "^2.1.0",
"react-dom": "16.13.1",
"shopify-buy": "^2.9.2",
"smoothscroll-polyfill": "^0.4.4",
"stripe": "^8.39.0",
"styled-breakpoints": "^8.1.0",
"styled-components": "^5.0.1",
"styled-normalize": "^8.0.7",
"xstate": "^4.8.0",
"yup": "^0.28.3"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/color": "^3.0.1",
"@types/mustache": "^4.0.1",
"@types/node": "^13.11.0",
"@types/node-fetch": "^2.5.5",
"@types/nodemailer": "^6.4.0",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@types/shopify-buy": "^1.11.0",
"@types/smoothscroll-polyfill": "^0.3.1",
"@types/styled-components": "^5.0.1",
"@types/yup": "^0.26.34",
"eslint-import-resolver-typescript": "^2.0.0",
"html-loader": "^1.1.0",
"poetic": "^1.5.0",
"typescript": "^3.8.3"
}
}