-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (57 loc) · 2.11 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
{
"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 --loader ts-node/esm scripts/server.ts",
"build:js": "concurrently \"tsc\" \"node --loader ts-node/esm scripts/build.ts\"",
"build:css": "sass app/assets/scss:app/assets/css",
"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 --loader ts-node/esm scripts/build-watch.ts",
"watch:css": "sass app/assets/scss:app/assets/css --watch",
"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": "npm run lint:js && npm run lint:css",
"start": "concurrently --kill-others \"npm run server\" \"npm run watch\""
},
"author": "Mark Hanna",
"repository": {
"type": "git",
"url": "https://github.com/cipscis/base-project.git"
},
"license": "Hippocratic-2.1",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@stylistic/eslint-plugin": "^2.3.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/user-event": "^14.5.2",
"@types/express": "^4.17.21",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-jest": "^28.6.0",
"express": "^4.19.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"sass": "^1.77.8",
"stylelint": "^16.7.0",
"stylelint-config-recommended-scss": "^14.1.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=20"
}
}