Skip to content

Commit c20e566

Browse files
author
App Generator
committed
Release - v0.0.6
1 parent 2f73121 commit c20e566

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## [0.0.6] 2021-07-07
4+
### Improvements
5+
6+
- Deprecate `src/app.js` - now the app is constructed by:
7+
- `src/server/index.js`
8+
- `src/index.js`
9+
- Integrate JTest: `yarn test`
10+
311
## [0.0.5] 2021-07-05
412
### Improvements
513

package.json

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@
22
"name": "api-server-nodejs",
33
"version": "0.0.4",
44
"description": "RESTful back-end for Node.js and Express.js",
5-
"main": "src/api.js",
5+
"main": "src/index",
66
"scripts": {
7-
"start": "nodemon src/api",
8-
"test": "echo \"Error: no test specified\" && exit 1"
7+
"start": "nodemon src/index",
8+
"test": "jest -i --colors --verbose --detectOpenHandles"
99
},
1010
"author": "AppSeed.us",
1111
"license": "MIT",
1212
"dependencies": {
1313
"bcrypt-nodejs": "0.0.3",
1414
"compression": "^1.7.4",
1515
"cors": "^2.8.5",
16+
"cross-env": "^7.0.0",
1617
"dotenv": "^8.2.0",
1718
"joi": "^17.4.0",
1819
"express": "^4.15.3",
@@ -26,9 +27,18 @@
2627
"passport-jwt": "^2.2.1",
2728
"path": "^0.12.7",
2829
"nodemon": "^2.0.9"
30+
2931
},
3032
"devDependencies": {
3133
"eslint": "^7.14.0",
32-
"eslint-config-google": "^0.14.0"
34+
"eslint-config-airbnb-base": "^14.0.0",
35+
"eslint-config-google": "^0.14.0",
36+
"eslint-config-prettier": "^8.1.0",
37+
"eslint-plugin-import": "^2.18.2",
38+
"eslint-plugin-jest": "^24.0.1",
39+
"eslint-plugin-prettier": "^3.1.1",
40+
"eslint-plugin-security": "^1.4.0",
41+
"jest": "^26.6.3",
42+
"supertest": "^6.1.3"
3343
}
3444
}

0 commit comments

Comments
 (0)