-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.69 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
{
"name": "catch-of-the-day",
"version": "0.0.1",
"description": "React catch of the day application",
"private": true,
"scripts": {
"dev": "react-scripts start",
"start": "serve --single ./build/catch-of-the-day",
"watch": "concurrently --names \"webpack, stylus\" --prefix name \"npm run start\" \"npm run styles:watch\"",
"build": "react-scripts build && sh script.sh catch-of-the-day",
"eject": "react-scripts eject",
"styles": "stylus -u autoprefixer-stylus ./src/css/style.styl -o ./src/css/style.css",
"styles:watch": "stylus -u autoprefixer-stylus -w ./src/css/style.styl -o ./src/css/style.css",
"test": "jest",
"deploy-manual": "aws s3 cp --recursive build/ s3://hafeezsyed.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hafeez-syed/catch-of-the-day.git"
},
"keywords": [
"react",
"jest",
"firebase",
"stylus"
],
"author": "Hafeez Syed",
"license": "MIT",
"bugs": {
"url": "https://github.com/hafeez-syed/catch-of-the-day/issues"
},
"homepage": "/catch-of-the-day/",
"devDependencies": {
"concurrently": "5.3.0",
"react-scripts": "3.4.3"
},
"dependencies": {
"autoprefixer-stylus": "1.0.0",
"eslint": "7.8.1",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-react": "7.20.6",
"firebase": "7.19.1",
"prop-types": "15.7.2",
"re-base": "4.0.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router-dom": "5.2.0",
"react-transition-group": "4.4.1",
"serve": "11.3.2",
"stylus": "0.54.8"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}