-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.8 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.8 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
{
"name": "fill-out--your-app-name",
"version": "0.0.0",
"description": "fill-out--description",
"main": "server/init.js",
"scripts": {
"build": "esbuild client/init.js --minify --bundle --outfile=public/js/init.js",
"build:watch": "npm run -s build -- --watch",
"jest": "node --experimental-vm-modules --no-warnings ./node_modules/.bin/jest",
"lint": "npm run -s lint:syntax && npm run -s lint:types",
"lint:syntax": "eslint \"**/*.js\" --ignore-pattern \"public/**\" && echo \"✓ Linted syntax and styling\"",
"lint:types": "tsc -p jsconfig.json && echo \"✓ Linted types\"",
"start": "node server/init.js",
"start:dev": "nodemon -e js,html,css",
"test": "npm run -s lint && npm run -s test:coverage",
"test:coverage": "npm run -s jest -- --coverage --collectCoverageFrom=\"./server/**\"",
"test:watch": "npm run -s jest -- --watch",
"postinstall": "husky install"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/leafrogers/fill-out--your-app-name.git"
},
"license": "MIT",
"dependencies": {
"compression": "^1.7.4",
"express": "^4.18.2",
"helmet": "^7.1.0",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/serve-favicon": "^2.5.7",
"@types/supertest": "^6.0.2",
"esbuild": "^0.19.10",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"nock": "^13.4.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"supertest": "^6.3.3",
"typescript": "^5.3.3"
},
"engines": {
"node": "^18.x.x"
}
}