-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.39 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
{
"name": "peppr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./server/server.js",
"test": "NODE_ENV=test tape ./server/tests/*.test.js | tap-spec",
"client-test": "cd client && npm test",
"local-test": "concurrently \"npm run test\" \"npm run client-test\"",
"client": "node start-client.js",
"server": "nodemon ./server/server.js",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-12/peppr.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-12/peppr/issues"
},
"homepage": "https://github.com/fac-12/peppr#readme",
"devDependencies": {
"concurrently": "^3.5.1",
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
},
"dependencies": {
"axios": "^0.17.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.2",
"cheerio": "^1.0.0-rc.2",
"env2": "^2.2.0",
"express": "^4.16.2",
"jwt-simple": "^0.5.1",
"nodemon": "^1.13.3",
"passport": "^0.4.0",
"passport-jwt": "^3.0.1",
"passport-local": "^1.0.0",
"pg-promise": "^7.3.2",
"request": "^2.83.0",
"url": "^0.11.0"
}
}