-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 2.04 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
{
"name": "scratch-concert-finder",
"version": "1.0.0",
"description": "A project to find live music nearby & choose shows by ear.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack serve --open --node-env development & nodemon server/server.js",
"build": "webpack --node-env production",
"start": "NODE_ENV=production node server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TassledWobbegong/scratch-concert-finder.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TassledWobbegong/scratch-concert-finder/issues"
},
"homepage": "https://github.com/TassledWobbegong/scratch-concert-finder#readme",
"dependencies": {
"@chakra-ui/icons": "^1.0.13",
"@chakra-ui/react": "^1.6.4",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"framer-motion": "^4.1.17",
"google-maps": "^4.3.3",
"moment": "^2.29.1",
"mongoose": "^5.13.0",
"react": "^17.0.2",
"react-datepicker": "^4.1.1",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-places-autocomplete": "^7.3.0",
"react-router-dom": "^5.2.0",
"react-spotify-web-playback": "^0.8.1",
"webpack": "^5.40.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^5.2.6",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"nodemon": "^2.0.7",
"source-map-loader": "^3.0.0",
"style-loader": "^2.0.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}