-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"name": "thesis-users",
"version": "1.0.0",
"description": "User Service component for the Datastalkers TimDer App",
"main": ".eslintrc.js",
"scripts": {
"inject-data": "node helpers/insertStarterData.js",
"clean-db": "node helpers/cleanDB.js",
"db-test": "mocha --bail -R nyan spec/dbSpec.js",
"server-dev": "nodemon server/index.js",
"server-test": "mocha --bail -R nyan spec/serverSpec.js",
"document": "jsdoc -r helpers database -R README.md",
"start": "node server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hackreactor/hrsf81-thesis.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hackreactor/hrsf81-thesis/issues"
},
"homepage": "https://github.com/hackreactor/hrsf81-thesis#readme",
"devDependencies": {
"chai": "^4.1.2",
"jsdoc": "^3.5.5",
"mocha": "^4.0.1"
},
"dependencies": {
"body-parser": "^1.18.2",
"chance": "^1.0.11",
"elasticsearch": "^13.3.1",
"express": "^4.16.2",
"faker": "^4.1.0",
"pg": "^7.3.0",
"pg-hstore": "^2.3.2",
"sequelize": "^4.15.0"
}
}