-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 959 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 959 Bytes
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
{
"name": "ProjectGamma",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/CodeWaala/ProjectGamma.git",
"license": "MIT",
"scripts": {
"server": "node server.js",
"client": "node scripts/start-client.js",
"start": "concurrently \"nodemon server.js\" \"npm run client\"",
"build": "node scripts/build.js",
"test": "echo \"Error: no test specified\" && exit 1",
"installDeps": "yarn && cd client && yarn"
},
"devDependencies": {
"concurrently": "^3.5.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"axios": "^0.18.0",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"express": "^4.16.3",
"express-session": "^1.15.6",
"mocha": "^5.1.0",
"mysql": "^2.15.0",
"mysql2": "^1.5.3",
"nightmare": "^3.0.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"sequelize": "^4.37.6",
"sequelize-cli": "^4.0.0"
}
}