-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 983 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
{
"name": "databases",
"version": "1.1.0",
"description": "Learn about databases",
"author": "Hack Reactor <[email protected]>",
"license": "UNLICENSED",
"private": true,
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"start": "node ./server/app.js",
"start:es6": "npx babel-node ./server/app.js",
"test": "jest",
"lint": "eslint ./"
},
"dependencies": {
"axios": "^0.21.0",
"cors": "^2.8.5",
"express": "4.17.1",
"morgan": "^1.10.0",
"mysql2": "^2.2.5",
"sequelize": "^6.3.5"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.13",
"@babel/preset-react": "^7.12.10",
"@babel/register": "^7.12.10",
"babel-jest": "^26.6.3",
"eslint-config-hackreactor": "https://github.com/reactorcore/eslint-config-hackreactor",
"jest": "^26.6.3"
},
"jest": {
"testRegex": "((\\.|/*.)(spec))\\.js?$",
"verbose": true
}
}