-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
{
"name": "the-remotants-backend",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:PestoTech/project-the-remotants-backend.git",
"author": "Nikhil Arora <narora200@gmail.com>, Saumya Tiwari <saumyatiwari.29@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node build",
"start:dev": "NODE_ENV=development nodemon src --exec babel-node",
"build": "rimraf build && webpack --mode production src/",
"test": "jest",
"test:coverage": "jest --coverage",
"precommit": "lint-staged"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"jest": "^23.2.0",
"lint-staged": "^7.2.0",
"nodemon": "^1.17.5",
"rimraf": "^2.6.2",
"supertest": "^3.1.0",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"axios": "^0.18.0",
"bcrypt": "^2.0.1",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"mongodb": "^3.1.0",
"morgan": "^1.9.0",
"nodemailer-promise": "^2.0.0",
"shortid": "^2.2.11",
"validator": "^10.4.0"
}
}