-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
52
53
54
55
{
"name": "estudo-fullstack",
"engines": {
"node": "10.x.x"
},
"version": "1.0.0",
"description": "Estudo do [Fullstack com Node.Js, React e GraphQL](https://www.webdevdrops.com/fullstack-node-react-graphql-introducao-2c2f18c757c4/) do site webdevdrops.com",
"main": "index.js",
"scripts": {
"prettier": "prettier --write \"./{src,client/src}/**/*.{js,scss}\"",
"prettier:check": "npm run prettier -- -l",
"prettier:write": "npm run prettier -- --write",
"lint": "eslint \"./{src,client/src}/**/*.js\"",
"lint:fix": "npm run lint -- --fix",
"start": "node src/index",
"test": "cross-env NODE_ENV=test mocha --recursive",
"test:coverage": "nyc --reporter=html --reporter=text npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adaolima/estudo-fullstack.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/adaolima/estudo-fullstack/issues"
},
"homepage": "https://github.com/adaolima/estudo-fullstack#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^6.0.3",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-node": "^10.0.0",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"sequelize-cli": "^5.5.1"
},
"dependencies": {
"express": "^4.17.1",
"forest-express-sequelize": "^5.2.0",
"pg": "^7.12.1",
"sequelize": "^5.21.2"
},
"nyc": {
"exclude": [
"config",
"src/models.index.js",
"test/**"
]
}
}