-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.37 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
{
"name": "shortstop",
"version": "0.1.0",
"private": false,
"description": "A personal HR tool for managing touchbases and other personell stuff.",
"repository": "https://github.com/Renddslow/shortstop",
"license": "MIT",
"author": "Matt McElwee <[email protected]>",
"main": "public/index.html",
"scripts": {
"build": "node build.js",
"start": "netlify dev"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md,ts,tsx}": [
"prettier --write"
]
},
"prettier": "@dmsi/prettier-config",
"ava": {
"babel": false,
"compileEnhancements": false,
"concurrency": 4,
"extensions": [
"ts"
],
"files": [
"src/**/*.test.ts"
],
"require": [
"ts-node/register"
],
"timeout": "1m"
},
"devDependencies": {
"@dmsi/prettier-config": "^1.3.0",
"@types/node": "^16.4.11",
"ava": "^3.15.0",
"esbuild": "^0.12.17",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"mri": "^1.1.6",
"netlify-cli": "^6.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@netlify/functions": "^0.7.2",
"catchify": "^2.6.1",
"faunadb": "^4.3.0",
"goober": "^2.0.39",
"got": "^11.8.2",
"jsonwebtoken": "^8.5.1",
"preact": "^10.5.14",
"regexparam": "^2.0.0",
"sort-on": "^4.1.1",
"wouter": "^2.7.4",
"wouter-preact": "^2.7.4"
}
}