-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.36 KB
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
{
"name": "cyclish",
"version": "1.0.0",
"description": "update your gear in multiple strava rides at once",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/steryereo/cyclish.git"
},
"dependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@fullhuman/postcss-purgecss": "^1.3.0",
"autoprefixer": "^9.6.5",
"axios": "^0.19.0",
"babel-loader": "^8.0.6",
"body-parser": "^1.19.0",
"clean-webpack-plugin": "^3.0.0",
"cookie-parser": "^1.4.4",
"css-loader": "^3.2.0",
"date-fns": "^2.6.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"img-loader": "^3.0.1",
"method-override": "^3.0.0",
"mini-css-extract-plugin": "^0.8.0",
"morgan": "^1.9.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"passport": "^0.4.0",
"passport-strava-oauth2": "^0.1.3",
"postcss-cli": "^6.1.3",
"postcss-loader": "^3.0.0",
"pug": "^2.0.4",
"pug-loader": "^2.4.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"strava-v3": "^2.0.1",
"style-loader": "^1.0.0",
"tailwindcss": "^1.1.3",
"terser-webpack-plugin": "^2.2.1",
"url-loader": "^2.2.0",
"util": "^0.12.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"concurrently": "^5.0.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"prettier": "^1.18.2"
},
"scripts": {
"build": "NODE_ENV=production webpack --config webpack/webpack.prod.js",
"dev": "concurrently \"webpack --config webpack/webpack.dev.js --watch\" \"nodemon --watch server server/index.js\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "nodemon server/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "MIT",
"sideEffects": [
"*.css"
]
}