-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.97 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
69
70
{
"name": "optic",
"version": "2.3.0",
"private": true,
"engines": {
"node": "16"
},
"scripts": {
"create:env": "node -r fs -e \"fs.copyFileSync('.env.sample', '.env', fs.constants.COPYFILE_EXCL)\"",
"dev": "nodemon --exec \"node server/index.js\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --write '**/*.js?(on)'",
"start": "node server/index.js",
"test": "tap server/test/*.test.js && c8 report --check-coverage --temp-directory .tap/coverage --statements 78 --branches 63.88 --functions 75 --lines 78",
"prepare": "npx husky"
},
"dependencies": {
"@fastify/auth": "^5.0.1",
"@fastify/autoload": "^6.0.2",
"@fastify/helmet": "^12.0.1",
"@fastify/sensible": "^5.6.0",
"@fastify/static": "^8.0.2",
"close-with-grace": "^2.1.0",
"dotenv": "^16.4.5",
"env-schema": "^6.0.0",
"expo-server-sdk": "^3.11.0",
"fastify": "^4.28.1",
"firebase": "^11.0.1",
"firebase-admin": "^12.7.0",
"fluent-json-schema": "^5.0.0",
"pkg-dir": "^5.0.0",
"uniqid": "^5.0.3",
"url-otpauth": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"c8": "^10.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"prettier-config-standard": "^7.0.0",
"sinon": "^18.0.0",
"tap": "^21.0.1"
},
"lint-staged": {
"server/**/*.{js,ts,json,md}": [
"eslint --cache",
"prettier"
]
},
"proxy": "http://localhost:3001",
"nodemonConfig": {
"watch": [
"server",
".env"
]
}
}