generated from Cipscis/base-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (63 loc) · 2.24 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
{
"name": "@cipscis/base-package",
"version": "0.1.0",
"description": "This is my base project to use when creating new packages.",
"private": true,
"browser": "./dist/main-export.js",
"type": "module",
"files": [
"dist/**/*"
],
"types": "dist/main-export.d.ts",
"scripts": {
"server": "node --loader ts-node/esm scripts/server.ts",
"buildJs": "concurrently \"tsc --noEmit\" \"node --loader ts-node/esm scripts/build.ts\"",
"buildCss": "sass docs/assets/scss:docs/assets/css",
"build": "concurrently \"npm run buildJs\" \"npm run buildCss\"",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"testCoverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --collectCoverage",
"watchJs": "node --loader ts-node/esm scripts/build-watch.ts",
"watchCss": "sass docs/assets/scss:docs/assets/css --watch",
"testWatch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch",
"watch": "concurrently --kill-others \"rimraf ./dist && tsc --watch --preserveWatchOutput --noEmit\" \"npm run watchJs\" \"npm run watchCss\" \"npm run testWatch\"",
"lintJs": "eslint docs/assets/js/src/**",
"lintCss": "stylelint docs/assets/scss/**/*.scss",
"lint": "npm run lintJs && npm run lintCss",
"start": "concurrently --kill-others \"npm run server\" \"npm run watch\"",
"prepare": "rimraf ./dist && npm test && tsc"
},
"author": "Mark Hanna",
"repository": {
"type": "git",
"url": "https://github.com/cipscis/base-package.git"
},
"license": "Hippocratic-2.1",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@stylistic/eslint-plugin": "^1.0.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/user-event": "^14.5.1",
"@types/express": "^4.17.20",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"esbuild": "^0.19.5",
"eslint": "^8.52.0",
"express": "^4.18.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^5.0.5",
"sass": "^1.69.5",
"stylelint": "^15.11.0",
"stylelint-config-recommended-scss": "^13.0.0",
"ts-jest": "^29.1.1",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=20"
}
}