-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "jr-dev",
"version": "1.0.0",
"description": "Starter kit for creating React and Express apps",
"main": "server.js",
"scripts": {
"client-install": "cd client && npm install",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run client\" \"npm run server\"",
"test": "mocha test/*.js --timeout 15000 --recursive"
},
"author": "Cristian Machuca",
"license": "MIT",
"devDependencies": {
"nodemon": "^1.19.4"
},
"dependencies": {
"babel-eslint": "^9.0.0",
"body-parser": "^1.19.0",
"chai": "^3.5.0",
"chai-http": "^2.0.1",
"client": "file:client",
"colors": "^1.4.0",
"concurrently": "^3.5.1",
"cors": "^2.8.5",
"darkmode-js": "^1.5.7",
"dotenv": "^8.2.0",
"express": "^4.16.2",
"express-handlebars": "^5.3.0",
"firebase": "^8.2.5",
"mocha": "^2.4.5",
"morgan": "^1.10.0",
"react-icons": "^4.1.0",
"react-scripts": "^4.0.1",
"sweetalert": "^2.1.2"
}
}