-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 2.23 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
{
"name": "@ladifire-opensource/animated-sticker",
"version": "0.0.1-beta.0",
"private": true,
"description": "Animated sticker from sprite image, like Facebook sticker",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "index.ts",
"repository": {
"type": "git",
"url": "https://github.com/ladifire-opensource/animated-sticker"
},
"dependencies": {
"@ladifire-opensource/stylex": "^0.1.0-beta.0",
"@ladifire-opensource/stylex-theme": "^0.1.0-beta.0",
"app-root-path": "^3.0.0",
"autoprefixer": "^10.2.1",
"compression-webpack-plugin": "^7.1.2",
"copy-webpack-plugin": "^7.0.0",
"cross-env": "^7.0.3",
"express-useragent": "^1.0.15",
"fork-ts-checker-webpack-plugin": "^6.1.0",
"html-webpack-plugin": "^4.5.1",
"mini-css-extract-plugin": "^1.3.4",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"preload-webpack-plugin": "^2.3.0",
"react": "17",
"react-dom": "17",
"webpack-fix-style-only-entries": "^0.6.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.15",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.14.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/plugin-transform-spread": "^7.13.0",
"@babel/preset-env": "^7.14.0",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@ladifire-opensource/stylex-webpack-plugin": "^0.1.0-beta.0",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"html-loader": "^2.1.2",
"image-webpack-loader": "^7.0.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^4.1.0",
"source-map-loader": "^2.0.0",
"webpack": "^5.36.2",
"webpack-cli": "4.6.0",
"webpack-dev-server": "^3.11.2"
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve --config webpack.config.js --progress --profile --content-base src/",
"build": "cross-env NODE_ENV=production webpack --output-path=dist"
}
}