-
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.93 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.93 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": "simply-social",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "set NODE_ENV=development&&node server/bin/www",
"client": "cd client && yarn start",
"build": "babel server/ -d dist/",
"dev": "yarn run server && yarn run client",
"start": "yarn run dev",
"lint": "eslint .",
"lint:errors": "eslint . --quit",
"debug": "babel-node debug server/bin/www"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imvsharma/simply-social.git"
},
"author": "Vaibhav Sharma <vsvaibhav2016@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/imvsharma/simply-social/issues"
},
"homepage": "https://github.com/imvsharma/simply-social#readme",
"dependencies": {
"axxer": "^1.0.2",
"bcrypt-nodejs": "0.0.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"concurrently": "^3.6.1",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"find-config": "^1.0.0",
"graphql": "^14.5.8",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.1",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"uuid": "^3.3.3",
"uuidv4": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.5.5",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^5.13.0"
}
}