-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.38 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
56
57
{
"name": "busquemconhecimento",
"version": "1.0.0",
"description": "Um projeto para pessoas buscarem conhecimento dentro das suas empresas",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "next build",
"start": "next start -p $PORT",
"dev": "next",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeanbauer/busquemconhecimento.git"
},
"keywords": [
"nextjs"
],
"author": "Jean Bauer",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/jeanbauer/busquemconhecimento/issues"
},
"homepage": "https://github.com/jeanbauer/busquemconhecimento#readme",
"dependencies": {
"dotenv": "^6.2.0",
"firebase": "^5.7.0",
"moment": "^2.23.0",
"next": "^9.3.2",
"react": "16.7.0-alpha.2",
"react-dom": "16.7.0-alpha.2",
"styled-components": "^4.1.2"
},
"devDependencies": {
"babel-core": "^7.0.0-bridge",
"babel-jest": "^24.8.0",
"babel-plugin-styled-components": "^1.10.6",
"husky": "^3.0.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react-testing-library": "^8.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true
}
}