-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "drink",
"version": "1.0.0",
"description": "Drink calendar app",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=dev nodemon server.js",
"watch": "parcel index.html",
"start": "node server.js",
"build": "parcel build index.html"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Shakusky/drink.git"
},
"author": "Sam Shakusky",
"license": "MIT",
"homepage": "https://bitbucket.org/Shakusky/drink#readme",
"dependencies": {
"autoprefixer": "^9.6.1",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"google-spreadsheet": "^2.0.7",
"googleapis": "^42.0.0",
"parcel-bundler": "^1.12.3",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-ga": "^2.6.0",
"request": "^2.88.0",
"sass": "^1.22.9"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"nodemon": "^1.19.1"
},
"browserslist": [
"last 2 version",
"> 1%"
]
}