This repository has been archived by the owner on Jul 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
163 lines (163 loc) · 5.37 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"name": "langjournal",
"version": "0.1.11",
"description": "A personal language learning journal",
"scripts": {
"buildDevServer": "webpack --config webpack.server.dev.js",
"buildProd": "npm-run-all clearBuild -p buildProdBundle buildProdServer",
"buildProdBundle": "webpack --config webpack.bundle.prod.js",
"buildProdServer": "webpack --config webpack.server.prod.js",
"checkFormatting": "prettier -l \"./src/**/*.+(json|md|ts|tsx)\"",
"checkTyping": "tsc",
"clearBuild": "rimraf build",
"dev": "run-s clearBuild buildDevServer start",
"lint": "run-p lintLocales lintScripts lintStyles",
"lintLocales": "intl-equalizer",
"lintScripts": "eslint -c .eslintrc.js ./ --ext=js,ts,tsx --max-warnings=0",
"lintStyles": "stylelint ./**/*.css",
"postreleasy": "git push heroku master -f",
"prereleasy": "npm-run-all -p checkFormatting checkTyping clearBuild lint -s buildProd",
"prod": "cross-env NODE_ENV=production run-s buildProd start",
"release": "releasy",
"start": "node -r dotenv/config build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alcar/langjournal.git"
},
"browserslist": [
"defaults",
"not Android 4.4.4",
"not Baidu 7.12",
"not ExplorerMobile 11",
"not IE 11",
"not OperaMini all",
"not OperaMobile 59",
"not QQAndroid 10.4",
"not Safari 5.1",
"not UCAndroid 12.12"
],
"author": "Alan Carpilovsky",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/alcar/langjournal/issues"
},
"homepage": "https://github.com/alcar/langjournal#readme",
"intl-equalizer": {
"localeDirectory": "src/client/i18n/messages",
"referenceLocale": "en_US"
},
"dependencies": {
"@apollo/react-common": "^3.1.1",
"@apollo/react-hooks": "^3.1.1",
"@apollo/react-ssr": "^3.1.1",
"@babel/runtime-corejs3": "^7.6.0",
"accepts": "^1.3.7",
"apollo-cache": "^1.3.2",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link": "^1.2.13",
"apollo-link-error": "^1.1.12",
"apollo-link-http": "^1.5.16",
"apollo-link-schema": "^1.2.4",
"apollo-server-express": "^2.9.3",
"compression": "^1.7.4",
"cookie-session": "^1.3.3",
"core-js": "^3.2.1",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"feather-icons": "^4.24.1",
"formik": "^2.2.6",
"graphql": "^14.5.4",
"isomorphic-style-loader": "^5.1.0",
"isomorphic-unfetch": "^3.0.0",
"keydown-from-click": "^1.1.5",
"mongodb": "^3.3.2",
"passport": "^0.4.0",
"passport-google-oauth20": "^2.0.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"react-hot-loader": "^4.12.13",
"react-intl": "^3.2.0",
"react-router-dom": "^5.1.1",
"react-select": "^3.0.5",
"regenerator-runtime": "^0.13.3",
"serve-favicon": "^2.5.0",
"validator": "^11.1.0",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@hot-loader/react-dom": "^16.9.0",
"@types/accepts": "^1.3.5",
"@types/compression": "^1.0.1",
"@types/cookie-session": "^2.0.37",
"@types/express": "^4.17.1",
"@types/feather-icons": "^4.7.0",
"@types/mongodb": "^3.3.1",
"@types/node": "^12.7.4",
"@types/passport": "^1.0.1",
"@types/react": "^16.9.2",
"@types/react-helmet": "^5.0.10",
"@types/react-router-dom": "^5.1.0",
"@types/react-select": "^3.0.4",
"@types/serve-favicon": "^2.2.31",
"@types/validator": "^10.11.3",
"@types/webpack": "^4.39.1",
"@types/webpack-dev-middleware": "^2.0.3",
"@types/webpack-env": "^1.14.0",
"@types/webpack-hot-middleware": "^2.16.5",
"@types/webpack-merge": "^4.1.5",
"@types/yup": "^0.26.23",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"@vtex/intl-equalizer": "^2.3.0",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.4",
"copyfiles": "^2.1.1",
"cross-env": "^5.2.1",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"dotenv": "^8.1.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-notice": "^0.8.9",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"graphql-tag": "^2.10.1",
"husky": "^3.0.4",
"lint-staged": "^9.2.1",
"mini-css-extract-plugin": "^0.8.0",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.18",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"releasy": "^1.10.0",
"rimraf": "^3.0.0",
"style-loader": "^1.0.0",
"stylelint": "^13.11.0",
"stylelint-config-prettier": "^5.2.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-no-unsupported-browser-features": "^3.0.2",
"stylelint-order": "^3.1.0",
"stylelint-prettier": "^1.1.1",
"typescript": "^3.5.3",
"webpack": "^4.40.2",
"webpack-bundle-analyzer": "^3.5.1",
"webpack-cli": "^3.3.9",
"webpack-dev-middleware": "^3.7.1",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2",
"webpack-stats-plugin": "^0.3.0"
}
}