-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.46 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
{
"name": "ten-movies",
"version": "0.0.1",
"description": "\"Top 10 movies list creator\"",
"repository": "https://github.com/giuliandrimba/tenmovies",
"author": "Giulian Drimba",
"license": "MIT",
"private": true,
"scripts": {
"bundle": "webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config webpack/webpack.dev.ts --env.NODE_ENV=development --open",
"build": "webpack --config webpack/webpack.prod.ts --env.NODE_ENV=production",
"check-types": "tsc"
},
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@doublepi/resize": "^1.0.4",
"@pixi/filter-bulge-pinch": "^3.1.1",
"@pixi/filter-displacement": "^5.3.3",
"@types/compression-webpack-plugin": "^4.0.1",
"@types/copy-webpack-plugin": "^6.0.0",
"@types/fontfaceobserver": "^0.0.6",
"@types/jest": "^26.0.13",
"@types/lodash": "^4.14.161",
"@types/node": "^14.6.4",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.2",
"@types/webpack": "^4.41.22",
"@types/webpack-dev-server": "^3.11.0",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^5.0.2",
"copy-webpack-plugin": "^6.1.0",
"css-loader": "^4.2.2",
"favicons-webpack-plugin": "^4.2.0",
"file-loader": "^6.1.0",
"fontfaceobserver": "^2.1.0",
"fork-ts-checker-webpack-plugin": "^5.1.0",
"gsap": "^3.5.1",
"happens": "^0.6.0",
"html-webpack-plugin": "^4.4.1",
"html-webpack-tags-plugin": "^2.0.17",
"imagemin-webpack-plugin": "^2.4.2",
"lodash": "^4.17.20",
"pixi-filters": "^3.1.1",
"pixi.js": "^5.3.3",
"pixi.js-legacy": "^5.3.3",
"prettier": "^2.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"scramble-text": "^0.0.8",
"style-loader": "^1.2.1",
"styled-components": "^5.1.1",
"styled-reset": "^4.2.2",
"ts-loader": "^8.0.3",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-immutable": "^6.0.1",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.3"
}
}