-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 988 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
40
41
42
43
44
{
"name": "rurickdev_portfolio",
"version": "0.1.0",
"private": true,
"author": "Rurick M. Poisot aka RurickDev",
"license": "MIT",
"homepage": "https://rurick.dev",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/rurickdev/portfolio.git"
},
"bugs": {
"url": "https://gitlab.com/rurickdev/portfolio/issues"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"standard": "echo '- Running standard -' && standard --fix && echo '- Standard OK -'",
"hook:precommit": "npm run standard"
},
"standard": {
"globals": [
"localStorage"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run standard"
}
},
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"next": "9.3.5",
"node-sass": "^4.14.0",
"react": "16.13.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"bulma": "^0.8.2",
"husky": "^4.2.5",
"standard": "^14.3.3"
}
}