-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (60 loc) · 2.25 KB
/
package.json
File metadata and controls
65 lines (60 loc) · 2.25 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
{
"name": "@cipscis/base-project",
"version": "0.1.0",
"description": "This is my base project to use when creating new projects.",
"private": true,
"type": "module",
"scripts": {
"server": "node --env-file-if-exists=.env scripts/server.ts",
"build:js": "concurrently \"tsc\" \"node --env-file-if-exists=.env scripts/build.ts\"",
"build:css": "sass app/assets/scss:app/assets/css --style=compressed",
"build": "concurrently \"npm:build:*\"",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --config=./test/jest.config.js",
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --config=./test/jest.config.js --collectCoverage",
"watch:js": "node --env-file-if-exists=.env scripts/build-watch.ts",
"watch:css": "sass app/assets/scss:app/assets/css --watch --style=compressed",
"watch:test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --config=./test/jest.config.js --watch",
"watch": "concurrently --kill-others \"tsc --watch --preserveWatchOutput\" \"npm:watch:*\"",
"lint:js": "eslint app/assets/js/src/**",
"lint:css": "stylelint app/assets/scss/**/*.scss",
"lint": "concurrently \"npm:lint:*\"",
"start": "concurrently --kill-others \"npm run server\" \"npm run watch\""
},
"author": "Brooke Hart",
"repository": {
"type": "git",
"url": "https://github.com/cipscis/base-project.git"
},
"license": "Hippocratic-2.1",
"devDependencies": {
"@eslint/compat": "^2.0.2",
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^9.39.3",
"@jest/globals": "^30.2.0",
"@stylistic/eslint-plugin": "^5.9.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@types/express": "^5.0.6",
"@types/node": "^22.18.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"esbuild": "~0.27.3",
"eslint": "^9.39.3",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-jsdoc": "^62.7.1",
"express": "^5.2.1",
"globals": "^17.3.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"sass": "^1.97.3",
"stylelint": "^17.4.0",
"stylelint-config-recommended-scss": "^17.0.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22.18.0"
}
}