-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.39 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.39 KB
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
{
"name": "logicteca",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "NODE_ENV=test node ./test/index.js | tap-spec",
"testing": "node ./test/index.js | tap-spec",
"start": "node ./server/index.js",
"heroku-postbuild": "cd client && npm install && npm run build",
"client": "npm start --prefix client",
"server": "nodemon ./server/index.js",
"dev": "concurrently \"npm run client\" \"npm run server\"",
"kill": "fuser -k 3000/tcp && fuser -k 5000/tcp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FACG6/logicteca.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FACG6/logicteca/issues"
},
"homepage": "https://github.com/FACG6/logicteca#readme",
"dependencies": {
"@hapi/joi": "^15.0.0",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.4",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-favicon": "^2.0.1",
"http-errors": "^1.7.2",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"pg": "^7.10.0"
},
"devDependencies": {
"concurrently": "^4.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.1",
"nodemon": "^1.18.11",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.10.1"
}
}