-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 948 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
{
"name": "grimm",
"version": "1.0.0",
"description": "A simple search engine for Brothers Grimm fairy tales",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/katronquillo/grimm.git"
},
"author": "Katrina Ronquillo",
"license": "ISC",
"bugs": {
"url": "https://github.com/katronquillo/grimm/issues"
},
"scripts": {
"setup": "npm install && cd client && npm install && cd ..",
"server": "node ./server/index.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"deploy": "npm run setup && npm run dev"
},
"homepage": "https://github.com/katronquillo/grimm#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"crawler": "^1.3.0",
"elasticlunr": "^0.9.5",
"express": "^4.18.2",
"mongoose": "^6.8.3",
"stopword": "^2.0.5"
}
}