-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.59 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
48
49
50
51
{
"name": "express-react-dev",
"version": "0.1.0",
"description": "A starting point boilerplate full stack project built with Node, Express, and Create-React-App.",
"main": "./server/server.js",
"scripts": {
"test": "yarn run clean:reports && yarn run test:server && yarn run test:client",
"test:server": "cd server && nyc mocha 'tests/**/*.js' --recursive",
"test:client": "cd client && yarn test:coverage",
"dev:start:server": "NODE_ENV=development nodemon ./server/server.js",
"dev:start:client": "cd client && yarn start",
"dev:start": "concurrently \"yarn run dev:start:server\" \"yarn run dev:start:client\"",
"install": "cd client && yarn install",
"clean:reports": "rm -rf ./client/coverage && rm -rf ./coverage"
},
"engines": {
"node": ">=12.12.0",
"yarn": ">=1.19.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Raven-s-Eye-Solutions/express-react-dev.git"
},
"keywords": [
"Node",
"Express",
"React"
],
"author": "Karsten Rabe <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Raven-s-Eye-Solutions/express-react-dev/issues"
},
"homepage": "https://github.com/Raven-s-Eye-Solutions/express-react-dev#readme",
"dependencies": {
"concurrently": "^5.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongodb": "^3.6.2",
"mongoose": "^5.10.11",
"morgan": "^1.10.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"supertest": "^4.0.2"
}
}