forked from d-sams-club/parse.ly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.92 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.92 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
{
"name": "find-your-beat",
"version": "1.0.0",
"description": "Simple music searching app based on the mood of the lyrics",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"react-dev": "webpack --config webpack.config.js --mode development --watch",
"start": "node server/index.js",
"deploy": "./node_modules/webpack/bin/webpack.js --config webpack.config.js --mode development --watch & node server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/parse-ly/parse.ly.git"
},
"author": "Parse.ly",
"license": "ISC",
"bugs": {
"url": "https://github.com/parse-ly/parse.ly/issues"
},
"homepage": "https://github.com/parse-ly/parse.ly#readme",
"devDependencies": {},
"dependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"axios": "^0.19.0",
"babel-loader": "^8.0.6",
"body-parser": "^1.19.0",
"connect-ensure-login": "^0.1.1",
"cookie-parser": "^1.3.5",
"css-loader": "^3.0.0",
"dotenv": "^8.0.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"express": "^4.17.1",
"express-session": "^1.11.3",
"html-webpack-plugin": "^3.2.0",
"mongodb": "^3.2.7",
"mongoose": "^5.6.4",
"mongoose-find-or-create": "^1.3.1",
"morgan": "^1.6.1",
"passport": "^0.4.0",
"passport-facebook": "^2.0.0",
"passport-google-oauth": "^2.0.0",
"prop-types": "^15.7.2",
"query-string": "^6.8.1",
"react": "^16.8.6",
"react-dev": "0.0.1",
"react-dom": "^16.8.6",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"style-loader": "^0.23.1",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
}
}