-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.2 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.2 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "step8up-week7-node-express-notes",
"version": "0.5.2",
"description": "Full Stack Notes Application using Node.js and Express",
"private": true,
"scripts": {
"prebuild": "rimraf ./public",
"build": "parcel build src/client/index.html --dist-dir ./public",
"start": "node src/server/server.js",
"dev": "nodemon src/server/server.js",
"lint": "eslint src/**/*.js",
"prettier": "npx prettier ./src/**/*.js --write",
"test": "jest",
"test:watch": "jest --watch",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:e2e": "jest tests/e2e --runInBand",
"validate": "npx stylelint src/**/*.css; npx html-validate src/**/*.html",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yaml,css,html}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/KamilWo/step8up-week7-node-express-notes.git"
},
"keywords": [
"notes",
"taking notes",
"full-stack application",
"node.js",
"nodejs",
"express",
"express.js"
],
"author": "Kamil Wozniak",
"license": "GPLv3",
"type": "commonjs",
"bugs": {
"url": "https://github.com/KamilWo/step8up-week7-node-express-notes/issues"
},
"homepage": "https://github.com/KamilWo/step8up-week7-node-express-notes#readme",
"jest": {
"testEnvironment": "node",
"clearMocks": true,
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"src/server/**/*.js"
],
"testMatch": [
"**/tests/unit/**/*.js",
"**/tests/integration/**/*.js",
"**/tests/e2e/**/*.js"
]
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"pg": "^8.16.3",
"uuid": "^11.1.0"
},
"devDependencies": {
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"html-validator": "^5.1.18",
"husky": "^9.1.7",
"jest": "^30.0.4",
"lint-staged": "^16.1.2",
"nodemon": "^3.1.10",
"parcel": "^2.15.4",
"prettier": "^3.6.2",
"stylelint": "^16.20.0",
"stylelint-config-standard": "^38.0.0",
"supertest": "^7.1.3"
}
}