-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
118 lines (118 loc) · 3.33 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
{
"name": "anzu.frontend",
"version": "1.0.0-alpha.2",
"description": "The next generation community-engine. frontend",
"repository": {
"type": "git",
"url": "git+https://github.com/tryanzu/frontend.git"
},
"author": "fernandez14",
"license": "ISC",
"bugs": {
"url": "https://github.com/tryanzu/frontend/issues"
},
"homepage": "https://github.com/tryanzu/frontend#readme",
"scripts": {
"start": "webpack --watch --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"release": "release-it --preRelease=alpha --no-npm.publish",
"eslint": "node_modules/eslint/bin/eslint.js src/."
},
"dependencies": {
"@types/history": "^4.7.5",
"autosize": "^4.0.2",
"babel-polyfill": "^6.26.0",
"callbag-basics": "^3.2.0",
"callbag-basics-esmodules": "^4.0.0",
"callbag-debounce": "^2.1.2",
"callbag-observe": "^1.0.0",
"callbag-subscribe": "^1.5.1",
"classnames": "^2.2.6",
"date-fns": "^1.30.1",
"deep-equal": "^1.1.1",
"emoji-dictionary": "^1.0.9",
"extend": ">=3.0.2",
"freactal": "^2.0.3",
"functional-acl": "^0.6.0",
"hyperscript-helpers": "^3.0.3",
"install": "^0.10.2",
"jed": "^1.1.1",
"lodash": "^4.17.19",
"lost": "^8.3.1",
"number-format.js": "^1.1.11",
"os": "^0.1.1",
"process": "^0.11.10",
"qs": "^6.9.3",
"query-string": "^5.1.1",
"react": "^16.13.1",
"react-autosize-textarea": "^6.0.0",
"react-debounce-input": "^3.2.2",
"react-dom": "^16.13.1",
"react-dropzone": "^8.0.4",
"react-hyperscript": "^3.2.0",
"react-markdown": "^5.0.3",
"react-modal": "^3.11.2",
"react-router-dom": "^4.3.1",
"react-rte": "^0.16.1",
"react-toastify": "^4.5.2",
"react-twitch-embed-video": "^1.1.4",
"react-youtube": "^7.9.0",
"spectre.css": "^0.5.8",
"switch-path": "^1.2.0",
"tachyons": "^4.11.1",
"timeago.js": "^3.0.2",
"tributejs": "^4.1.3"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@release-it/conventional-changelog": "^2.0.0",
"babel-eslint": "^10.1.0",
"babel-esm-plugin": "^0.9.0",
"babel-loader": "^8.2.2",
"babel-minify-webpack-plugin": "^0.3.1",
"braces": ">=2.3.1",
"clean-css": "^4.2.3",
"clean-webpack-plugin": "^3.0.0",
"closure-webpack-plugin": "^2.3.0",
"css-loader": "^3.4.2",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.10.0",
"eslint-plugin-prettier": "^2.7.0",
"file-loader": "^4.3.0",
"mini-css-extract-plugin": "^1.3.3",
"node-sass": "^4.13.1",
"optimize-plugin": "^1.0.0",
"path-browserify": "^1.0.1",
"prettier": "^1.19.1",
"release-it": "^14.0.3",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.3.5",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"webpack-merge": "^5.7.2",
"webpack-plugin-modern-npm": "^0.1.0",
"ws": "^7.2.3"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"hooks": {
"before:init": [
"npm run eslint"
]
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
}
}