-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) Β· 906 Bytes
/
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
{
"name": "aspen",
"description": "Search engine for a large corpus of plaintext documents",
"author": "Ian Langworth",
"license": "MIT",
"version": "2.0.0",
"repository": "git@github.com:statico/aspen.git",
"private": true,
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"prepare": "husky install"
},
"dependencies": {
"commander": "^10.0.0",
"express": "4.18.2",
"humanize-plus": "^1.8.2",
"line-reader": "^0.4.0",
"next": "^13",
"path-is-inside": "^1.0.2",
"qs": "^6.11.1",
"react": "18",
"react-dom": "18",
"serve-index": "^1.9.1",
"superagent": "^8.0.9",
"walk": "^2.3.15"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "2.8.7"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}