-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.94 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.94 KB
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
56
57
58
59
60
61
62
63
{
"name": "@guiabolsobr/events-protocol-react-hooks",
"version": "2.1.0",
"description": "React Hooks de manipulação do protocolo de eventos",
"main": "index.js",
"scripts": {
"lint": "eslint ./src/*.ts",
"prebuild": "npm run lint && npm run test",
"beautify": "prettier --write ./src/*.ts",
"start": "ts-node ./example/index.ts",
"test": "jest --ci",
"build": "cross-env NODE_ENV=production tsc --outDir ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GuiaBolso/events-protocol-react-hooks.git"
},
"keywords": [
"events-protocol",
"react",
"hooks",
"react"
],
"author": "Guiabolso <frontmonstrao@guiabolso.com.br>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GuiaBolso/events-protocol-react-hooks/issues"
},
"homepage": "https://github.com/GuiaBolso/events-protocol-react-hooks#readme",
"dependencies": {
"@guiabolsobr/events-protocol": "^1.0.1-2",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.1",
"@types/parcel-bundler": "^1.12.1",
"@types/testing-library__jest-dom": "^5.0.3",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react-hooks": "^3.2.1",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"express": "^4.17.1",
"husky": "^4.2.5",
"jest": "^25.4.0",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.1",
"ts-node": "^8.9.0",
"typescript": "^3.8.3"
}
}