-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1 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
{
"name": "your repo name",
"version": "1.0.0",
"description": "your description",
"main": "index.js",
"repository": "your repo url",
"author": "Fauna",
"private": true,
"dependencies": {
},
"devDependencies": {
"@tsconfig/node16-strictest": "^1.0.4",
"@types/jest": "^29.1.2",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^9.0.0",
"eslint-plugin-tsdoc": "^0.4.0",
"husky": "^9.0.6",
"jest": "^29.1.2",
"prettier": "^3.0.0",
"pretty-quick": "^4.0.0",
"ts-jest": "^29.0.3",
"typescript": "^5.0.2"
},
"scripts": {
"prepare": "husky install",
"build": "tsc --project ./",
"lint": "eslint -f unix \"src/**/*.{ts,tsx}\"",
"sync-submodules": "git submodule sync; git submodule update --init --recursive --remote",
"fauna-local": "docker start faunadb || docker run --rm -d --name faunadb -p 8443:8443 -p 8084:8084 fauna/faunadb:latest",
"test": "jest"
}
}