-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.05 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
{
"name": "tagreplacer",
"version": "0.0.3",
"description": "tumblr tag replacer",
"main": "index.js",
"author": "Alex Baldwin <[email protected]> (https://cubegho.st/)",
"repository": {
"type": "git",
"url": "[email protected]:cubeghost/tagreplacer.git"
},
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"watch": "npm-run-all --parallel watch:*",
"watch:server": "nodemon --watch src ./src/index.js",
"watch:client": "NODE_OPTIONS=--openssl-legacy-provider webpack --watch",
"build": "NODE_OPTIONS=--openssl-legacy-provider webpack",
"start": "node src/index.js",
"test": "mocha \"./src/**/tests/*.js\"",
"watch:test": "mocha --watch --recursive \"./src/**/tests/*.js\""
},
"engines": {
"node": "18.x"
},
"dependencies": {
"@babel/runtime": "^7.7.4",
"@sentry/node": "^7.101.1",
"@sentry/tracing": "^7.101.1",
"body-parser": "^1.19.0",
"connect-redis": "^4.0.4",
"debug": "^3.2.6",
"envify": "^4.1.0",
"es6-promise": "^3.2.1",
"express": "^4.17.1",
"express-session": "^1.17.0",
"grant-express": "^4.6.4",
"helmet": "^3.21.2",
"history": "^4.10.1",
"ioredis": "^5.3.2",
"is-docker": "^2.0.0",
"lodash": "^4.17.15",
"raven-js": "3.26.3",
"react-markdown": "^2.5.0",
"redis": "^2.8.0",
"sass": "^1.38.0",
"stringify": "^5.1.0",
"tumblr.js": "https://github.com/cubeghost/tumblr.js",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"autoprefixer": "9.0.0",
"babel-eslint": "8.2.6",
"babel-loader": "^8.0.6",
"babel-plugin-transform-runtime": "^6.23.0",
"case-sensitive-paths-webpack-plugin": "2.1.2",
"chai": "^4.2.0",
"class-autobind": "^0.1.4",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "1.0.0",
"dotenv": "^2.0.0",
"eslint": "^5.16.0",
"eslint-formatter-pretty": "1.3.0",
"eslint-loader": "2.0.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.10.0",
"file-loader": "^1.1.11",
"find-cache-dir": "^2.1.0",
"friendly-errors-webpack-plugin": "1.7.0",
"html-webpack-plugin": "3.2.0",
"mini-css-extract-plugin": "0.4.1",
"mocha": "^5.2.0",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"postcss-loader": "2.1.6",
"prelude-extension": "^0.1.0",
"prelude-ls": "^1.1.2",
"raw-loader": "^0.5.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^5.1.2",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-select": "^2.4.4",
"redux": "^3.7.2",
"redux-thunk": "^2.3.0",
"sass-loader": "7.3.1",
"simple-progress-webpack-plugin": "1.1.2",
"style-loader": "0.21.0",
"terser-webpack-plugin": "4",
"tether": "^1.4.7",
"uglifyjs-webpack-plugin": "1.2.7",
"webpack": "4",
"webpack-cli": "3.1.0",
"whatwg-fetch": "^1.0.0"
},
"eslintConfig": {
"extends": "./eslint.js"
}
}