-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.82 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.82 KB
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": "dot-org",
"version": "0.1.0",
"main": "index.js",
"repository": "https://github.com/remoteshiva/dot-org.git",
"author": "Kristin Ruben <kruben@gmail.com>, Andrew Ash <andrew@emotiveapps.com>",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-typescript": "^7.9.4",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@fullhuman/postcss-purgecss": "^2.1.2",
"@tailwindcss/ui": "^0.2.2",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-portal": "^4.0.2",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"autoprefixer": "^9.7.6",
"core-js": "^3.6.5",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"firebase": "^7.14.2",
"firebase-admin": "^8.11.0",
"firebase-functions": "^3.6.1",
"i18next": "^19.4.5",
"i18next-browser-languagedetector": "^4.2.0",
"i18next-http-backend": "^1.0.13",
"jsx-runtime": "^1.2.0",
"mailgun-js": "^0.22.0",
"node-sass": "^4.14.0",
"postcss-loader": "^3.0.0",
"react": "^17.0.1",
"react-dom": "^16.13.1",
"react-hook-form": "^5.6.0",
"react-i18next": "^11.5.0",
"react-is": "^16.13.1",
"react-portal": "^4.2.1",
"react-refresh": "^0.8.1",
"react-router-dom": "^5.2.0",
"sass-loader": "^8.0.2",
"styled-components": "^5.1.0",
"tailwindcss": "^1.3.5",
"typescript": "^3.8.3",
"amplitude-js": "^7.4.2"
},
"devDependencies": {
"@types/html-webpack-plugin": "^3.2.2",
"@types/webpack": "^4.41.12",
"@webhotelier/webpack-fast-refresh": "^2.0.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.3",
"eslint-loader": "^4.0.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.2.0",
"prettier": "^2.0.5",
"source-map-loader": "^0.2.4",
"style-loader": "^1.2.0",
"ts-loader": "^7.0.1",
"ts-node": "^8.9.1",
"url-loader": "^4.1.0",
"webpack": "^5.0.0-beta.15",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"scripts": {
"build": "webpack --mode production",
"dev": "webpack-dev-server --mode development",
"deploy": "func() { node setEnv.js \"$1\" && yarn build && firebase use remoteshiva-$1 && firebase deploy --project remoteshiva-$1; } && func"
}
}