-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.73 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
{
"name": "reddit-tv",
"version": "0.0.0",
"description": "RedditTV Frontend Client",
"author": "Alexi Garrow",
"registry": "https://registry.yarnpkg.com",
"scripts": {
"build:prod": "TARGET_ENV=prod webpack --env TARGET_ENV=prod",
"build:staging": "TARGET_ENV=staging webpack --env TARGET_ENV=staging",
"deploy:prod": "aws s3 sync ./dist/prod/ s3://subreddit.tv",
"deploy:staging": "aws s3 sync ./dist/staging/ s3://staging.subreddit.tv",
"generate": "plop",
"start": "TARGET_ENV=dev webpack serve --mode development --open --hot"
},
"dependencies": {
"@reduxjs/toolkit": "^1.5.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"axios": "^0.21.0",
"core-js": "^3.8.1",
"react": "^17.0.1",
"react-cookie": "^4.0.3",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"regenerator-runtime": "^0.13.7",
"typescript": "^4.1.3"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "^5.0.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"inquirer-file-tree-selection-prompt": "^1.0.7",
"node-sass": "^5.0.0",
"plop": "^2.7.4",
"prettier": "^2.2.1",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"ts-node": "^9.1.1",
"url-loader": "^4.1.1",
"webpack": "^5.0.0-rc.6",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0",
"webpack-pwa-manifest": "^4.3.0"
}
}