-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.02 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
71
72
73
74
75
76
77
{
"name": "octo-spork",
"version": "1.0.0",
"description": "Enable users to quickly and intuitively find information regarding their local representatives, upcoming elections, voting patterns and other civic information",
"main": "server.js",
"scripts": {
"start": "node ./dist/server.js",
"oldStart": "npm i && npm run build && node -r dotenv/config ./dist/server.js",
"dev": "npx ts-node -r dotenv/config ./src/server",
"test": "jest",
"lint": "npx eslint . --fix",
"build": "tsc",
"prepare": "husky install",
"postinstall": "npm run build",
"huskyinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"format": "npx prettier -w ./src/* ./__tests__/*"
},
"eslintIgnore": [
"dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iatenine/octo-spork.git"
},
"keywords": [
"node",
"nodejs",
"typescript",
"government"
],
"author": "Jack Linhart",
"license": "MIT",
"bugs": {
"url": "https://github.com/iatenine/octo-spork/issues"
},
"homepage": "https://github.com/iatenine/octo-spork#readme",
"devDependencies": {
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@tsconfig/node16": "^1.0.3",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.5",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"babel-jest": "^28.1.2",
"eslint": "^8.19.0",
"frisby": "^2.1.3",
"husky": "^8.0.1",
"jest": "^28.1.2",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"log4js": "^6.6.1",
"mongoose": "^6.5.1",
"prettier": "^2.7.1"
},
"private": false,
"moduleFileExtensions": [
"js",
"ts",
"tsx"
]
}