-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.62 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
{
"name": "mern-auth",
"version": "1.0.0",
"author": "John Ayad",
"description": "",
"main": "server/index.js",
"scripts": {
"start": "npm run prod",
"client": "SKIP_PREFLIGHT_CHECK=true npm start --prefix client",
"client-install": "npm install --prefix client",
"server": "babel-node ./server/index.js",
"server:prod": "node ./dist/index.js",
"dev": "NODE_ENV=development npm run server",
"dev-concurrent": "NODE_ENV=development concurrently \"npm run watch\" \"npm run client\"",
"clean": "rimraf dist",
"build": "babel ./server --out-dir dist && cp ./server/config/config.json ./dist/config/",
"prod": "NODE_ENV=production npm-run-all clean build server:prod",
"watch": "nodemon --watch server/",
"eslint": "eslint server/**/*.js --ignore-pattern \"node_modules/\""
},
"engines": {
"node": ">=8"
},
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^4.1.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.5",
"npm-run-all": "^4.1.5",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"rimraf": "^2.6.3",
"sanitize-html": "^1.20.1",
"validator": "^11.1.0"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"babel-eslint": "^10.0.2",
"eslint": "^6.0.1",
"eslint-plugin-node": "^9.1.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2"
},
"nodemonConfig": {
"ignore": [
"client"
]
}
}