-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 910 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 910 Bytes
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
{
"name": "comunidades-tech",
"version": "1.0.0",
"description": "A página de todas as comunidades de tecnologia do Brasil",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"deploy": "npm run build && npm run export",
"prettier": "prettier --write '**/*.js{x,}'"
},
"husky": {
"hooks": {
"pre-commit": "yarn build"
}
},
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"bulma": "^0.7.5",
"dotenv": "^8.0.0",
"next": "^8.1.0",
"node-sass": "^4.12.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-jsx-plugin-sass": "^1.0.0"
},
"devDependencies": {
"babel-plugin-module-resolver": "^3.2.0",
"husky": "^2.7.0",
"next-compose-plugins": "^2.2.0",
"next-images": "^1.1.2",
"prettier": "^1.18.2"
}
}