forked from viclafouch/meme-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
137 lines (137 loc) · 4.25 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
{
"name": "meme-studio",
"version": "1.0.0",
"private": true,
"description": "A complete meme generator coded in React / Express / Typescript",
"scripts": {
"dev": "npm-run-all --parallel dev:server dev:client",
"dev:client": "webpack serve --config ./build/webpack.client.js --mode=development",
"dev:server": "webpack --config ./build/webpack.server.js --mode=development",
"build": "npm-run-all --parallel build:client build:server",
"build:client": "webpack --config ./build/webpack.client.js --mode=production",
"build:server": "webpack --config ./build/webpack.server.js --mode=production",
"start": "npx cross-env NODE_ENV=production node ./dist/server/index.js",
"commit": "git-cz",
"lint": "tsc --noEmit && eslint --ext .ts,.tsx src/",
"ncu": "node tasks/ncu.js",
"download": "node tasks/download.js",
"postinstall": "cd src/client && npm install"
},
"engines": {
"node": "12.16.x",
"npm": "6.14.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viclafouch/meme-studio.git"
},
"keywords": [
"typescript",
"express",
"react",
"api",
"react-hooks",
"meme-generator"
],
"author": "Victor de la Fouchardiere",
"license": "ISC",
"bugs": {
"url": "https://github.com/viclafouch/meme-studio/issues"
},
"homepage": "https://github.com/viclafouch/meme-studio#readme",
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.12.10",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"@babel/preset-typescript": "7.12.7",
"@babel/runtime": "7.12.5",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@types/bluebird": "3.5.33",
"@types/cookie-parser": "1.4.2",
"@types/cors": "2.8.9",
"@types/express": "4.17.9",
"@types/morgan": "1.9.2",
"@types/node": "14.14.16",
"@types/sequelize": "4.28.9",
"@types/shortid": "0.0.29",
"@types/twit": "2.2.28",
"@types/validator": "13.1.2",
"@typescript-eslint/eslint-plugin": "4.11.0",
"@typescript-eslint/parser": "4.11.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "3.0.0",
"commitizen": "4.2.2",
"compression-webpack-plugin": "7.1.1",
"copy-webpack-plugin": "7.0.0",
"cross-env": "7.0.3",
"css-loader": "5.0.1",
"cz-conventional-changelog": "3.3.0",
"dotenv-webpack": "5.0.0",
"eslint": "7.16.0",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-prettier": "3.3.0",
"eslint-plugin-react-hooks": "4.2.0",
"html-loader": "1.3.2",
"html-webpack-plugin": "4.5.0",
"husky": "4.3.6",
"image-size": "0.9.3",
"markdown-loader": "6.0.0",
"mini-css-extract-plugin": "1.3.3",
"node-sass": "5.0.0",
"npm-check-updates": "10.2.5",
"npm-run-all": "4.1.5",
"png-to-jpeg": "1.0.1",
"preload-webpack-plugin": "3.0.0-beta.4",
"prettier": "2.2.1",
"sass-loader": "10.1.0",
"source-map-loader": "2.0.0",
"style-loader": "2.0.0",
"tinify": "1.6.0-beta.2",
"ts-loader": "8.0.12",
"tsconfig-paths-webpack-plugin": "3.3.0",
"typescript": "4.1.3",
"webp-converter": "2.3.1",
"webpack": "5.11.0",
"webpack-bundle-analyzer": "4.3.0",
"webpack-cli": "4.3.0",
"webpack-dev-server": "3.11.0",
"webpack-node-externals": "2.5.2",
"webpack-remove-empty-scripts": "0.7.0",
"webpack-shell-plugin-next": "2.1.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"body-parser": "1.19.0",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"express": "4.17.1",
"express-validator": "6.9.0",
"helmet": "4.2.0",
"heroku-ssl-redirect": "0.1.1",
"is-base64": "1.1.0",
"morgan": "1.10.0",
"pg": "8.5.1",
"prerender-node": "3.2.5",
"sequelize": "6.3.5",
"shortid": "2.2.16",
"sqlite3": "5.0.0",
"twit": "2.2.11",
"yargs": "16.2.0"
}
}