-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1005 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
38
39
40
41
{
"name": "tichu",
"version": "0.0.1",
"description": "React Tichu Game",
"main": "server.js",
"scripts": {
"test": "mocha server/tests/*.test.js",
"start": "nodemon ./server/server.js",
"test-watch": "nodemon --exec 'npm test'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gonzric1/tichu.git"
},
"author": "Ricardo Gonzalez",
"license": "MIT",
"bugs": {
"url": "https://github.com/gonzric1/tichu/issues"
},
"homepage": "https://github.com/gonzric1/tichu#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"express": "^4.17.1",
"knex": "^0.20.9",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pg": "^7.18.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"socket.io": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"nodemon": "^2.0.2",
"expect": "^25.1.0",
"mocha": "^7.0.1",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}