forked from signalstickers/signalstickers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.74 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
{
"name": "signalstickers",
"private": true,
"version": "1.0.0",
"description": "A gallery of stickers for Signal, the secure messenger!",
"contributors": [
{
"name": "Romain Ricard",
"url": "https://romainricard.fr/"
}
],
"license": "WTFPL",
"homepage": "https://signalstickers.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/signalstickers/signalstickers.git"
},
"bugs": {
"url": "https://github.com/signalstickers/signalstickers/issues"
},
"keywords": [],
"scripts": {
"clean": "del dist",
"lint": "tslint --config tslint.json --project tsconfig.json --format codeFrame",
"test": "jest --config=config/jest.config.js",
"prebuild": "run-s clean lint",
"build": "webpack --mode=production --config=config/webpack.config.ts",
"start": "webpack-dev-server --mode=development --config=config/webpack.config.ts"
},
"dependencies": {
"@signalstickers/stickers-client": "^0.1.5",
"axios": "^0.19.2",
"bytes": "^3.1.0",
"debounce-fn": "^4.0.0",
"formik": "^2.1.4",
"json-loader": "^0.5.7",
"linaria": "^1.3.3",
"localforage": "^1.7.4",
"modernizr": "^3.11.2",
"modernizr-loader": "^1.0.1",
"p-queue": "^6.4.0",
"p-wait-for": "^3.1.0",
"polished": "^3.6.5",
"protobufjs": "^6.9.0",
"ramda": "^0.27.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-linkify": "^1.0.0-alpha",
"react-octicon": "^3.0.1",
"react-router-dom": "^5.2.0",
"react-syntax-highlighter": "^12.2.1",
"react-waypoint": "^9.0.2",
"use-async-effect": "^2.2.2",
"use-breakpoint": "^1.1.2",
"webp-hero": "0.0.0-dev.24"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@signalstickers/fetch-sticker-data-webpack-plugin": "^0.1.2",
"@types/ajv": "^1.0.0",
"@types/bootstrap": "^4.5.0",
"@types/bytes": "^3.1.0",
"@types/copy-webpack-plugin": "^5.0.2",
"@types/friendly-errors-webpack-plugin": "^0.1.1",
"@types/fuzzy-search": "^2.1.0",
"@types/html-webpack-plugin": "^3.2.3",
"@types/jest": "^25.2.3",
"@types/jquery": "^3.3.38",
"@types/js-yaml": "^3.12.4",
"@types/mini-css-extract-plugin": "^0.9.1",
"@types/modernizr": "^3.5.3",
"@types/node": "^13.13.12",
"@types/ramda": "^0.27.6",
"@types/react": "^16.9.36",
"@types/react-dom": "^16.9.8",
"@types/react-linkify": "^1.0.0",
"@types/react-router-dom": "^5.1.5",
"@types/react-syntax-highlighter": "^11.0.4",
"@types/webpack": "^4.41.17",
"@types/webpack-dev-server": "^3.11.0",
"ajv": "^6.12.2",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^3.5.3",
"del-cli": "^3.0.1",
"favicons-webpack-plugin": "^3.0.1",
"file-loader": "^6.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"fuzzy-search": "^3.2.1",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^25.5.4",
"mini-css-extract-plugin": "^0.9.0",
"npm-run-all": "^4.1.5",
"raw-loader": "^4.0.1",
"react-hot-loader": "^4.12.21",
"style-loader": "^1.2.1",
"tslint": "^6.1.2",
"tslint-loader": "^3.6.0",
"tslint-xo": "^0.16.0",
"typescript": "^3.9.5",
"typescript-styled-plugin": "^0.15.0",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}