-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.57 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "postify-webservice",
"version": "1.0.0",
"description": "posts app with tdd practice using express",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon",
"test": "cross-env NODE_ENV=test jest --coverage --watch",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"keywords": [
"express",
"tdd",
"posts",
"login",
"authentication"
],
"author": "ashish karki",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"http-status-codes": "^2.2.0",
"sequelize": "^6.15.0",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"supertest": "^6.2.2"
},
"jest": {
"testPathIgnorePatterns": [
"postify-web"
]
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2018
},
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"plugins": [
"prettier"
],
"env": {
"node": true,
"es6": true,
"jest": true
},
"rules": {
"eqeqeq": "warn",
"prettier/prettier": [
"ignore",
{
"semi": false,
"singleQuote": true
}
]
}
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"semi": false
}
}