forked from jeffreyclu/friend.ly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.52 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.52 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
{
"name": "friend.ly",
"version": "1.0.0",
"engines": {
"node": "12.x"
},
"description": "",
"main": "index.js",
"scripts": {
"start": "env NODE_ENV=production node server/server.js",
"build": "env NODE_ENV=production webpack",
"dev": "env NODE_ENV=development webpack-dev-server --open & nodemon server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeffreyclu/friend.ly.git"
},
"author": "Jeffrey Lu",
"license": "ISC",
"bugs": {
"url": "https://github.com/jeffreyclu/friend.ly/issues"
},
"homepage": "https://github.com/jeffreyclu/friend.ly#readme",
"dependencies": {
"@babel/polyfill": "^7.10.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"browserify": "^16.5.1",
"cloudinary": "^1.21.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fast-xml-parser": "^3.17.3",
"mongoose": "^5.9.16",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scroll": "^1.7.16",
"sass": "^1.26.7"
},
"devDependencies": {
"@babel/core": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"@babel/preset-react": "^7.10.1",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.3",
"file-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.9.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}