This repository has been archived by the owner on Apr 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.59 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
{
"name": "com.yestheoryfam",
"version": "0.0.1",
"description": "A single page application to host the community of the Yes Fam",
"main": "index.js",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"react-hot-loader/babel"
]
},
"scripts": {
"lint": "prettier --check src",
"lint:fix": "prettier --write src",
"test": "test",
"start": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --mode production --config webpack.prod.js",
"deploy:prod": "rsync -avzhe 'ssh -i ~/.ssh/ytf.pem' --progress ./dist/* [email protected]:/home/ubuntu/com.yestheoryfam"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yes-Theory-Fam/com.yestheoryfam.git"
},
"keywords": [
"yes",
"theory"
],
"author": "Yes Fam Website Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/Yes-Theory-Fam/com.yestheoryfam/issues"
},
"homepage": "https://github.com/Yes-Theory-Fam/com.yestheoryfam#readme",
"dependencies": {
"@types/js-cookie": "^2.2.6",
"@types/passport-auth0": "^1.0.4",
"date-fns": "^2.11.1",
"firebase": "^7.14.0",
"js-cookie": "^2.2.1",
"react": "^16.12.0",
"react-clamp-lines": "^3.0.2",
"react-contenteditable": "^3.3.4",
"react-dom": "^16.12.0",
"react-dropzone-uploader": "^2.11.0",
"react-icons": "^3.9.0",
"react-image-lightbox": "^5.1.1",
"react-quill": "^2.0.0-beta.2",
"react-router-dom": "^5.1.2",
"react-toastify": "^5.5.0",
"react-transition-group": "^4.3.0"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@svgr/webpack": "^5.2.0",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/react-router-dom": "^5.1.3",
"@types/react-transition-group": "^4.2.4",
"@types/webpack-env": "^1.14.1",
"axios": "^0.21.1",
"babel-loader": "^8.0.6",
"css-loader": "^3.3.2",
"dotenv-webpack": "^1.7.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^3.2.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"passport": "^0.4.1",
"passport-auth0": "^1.3.2",
"prettier": "2.0.4",
"react-hot-loader": "^4.12.18",
"sass": "^1.25.0",
"sass-loader": "^8.0.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.1",
"ts-loader": "^6.2.1",
"typescript": "^3.7.3",
"url-loader": "^3.0.0",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
}
}