-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.66 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
{
"name": "budgie-backend",
"scripts": {
"start": "webpack --config webpack.dev.js",
"nodemon": "nodemon -r dotenv/config build/index.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint '**/*.{js,ts,tsx}'",
"lint:fix": "yarn lint --fix",
"format": "prettier --check .",
"format:fix": "prettier --write ."
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"date-fns": "^2.12.0",
"dotenv-safe": "^8.1.0",
"express": "^4.17.3",
"jsonwebtoken": "^9.0.0",
"mongoose": "^5.9.5",
"ramda": "^0.27.0"
},
"devDependencies": {
"@mrseanbaines/prettier-config": "^1.1.0",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.2",
"@types/jsonwebtoken": "^8.3.8",
"@types/mongoose": "^5.7.7",
"@types/ramda": "^0.27.4",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"clean-terminal-webpack-plugin": "^2.0.5",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.3",
"nodemon": "^1.19.4",
"prettier": "^2.0.2",
"ts-loader": "^6.2.1",
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2",
"webpack-shell-plugin": "^0.5.0"
},
"version": "0.0.0",
"repository": "[email protected]:mrseanbaines/budgie-backend.git",
"author": "Sean Baines <[email protected]>",
"license": "MIT",
"private": true,
"prettier": "@mrseanbaines/prettier-config"
}