-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.72 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
58
59
60
61
62
63
{
"name": "@open-webring/site",
"version": "0.0.1",
"description": "join or create webrings",
"main": "validate.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "next",
"build": "next build",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"start": "next start",
"export": "next export",
"predeploy": "rm -rf node_modules/.cache && npm run build && npm run export",
"deploy": "gh-pages -t true -d out && rm -rf out/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mldangelo/open-webring.git"
},
"author": "Michael D'Angelo ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/mldangelo/open-webring/issues"
},
"homepage": "https://github.com/mldangelo/open-webring#readme",
"dependencies": {
"@open-webring/react": "file:packages/react-component",
"@open-webring/schema": "file:packages/schema",
"ajv": "^7.0.2",
"gh-pages": "^5.0.0",
"glob": "^7.1.6",
"next": "latest",
"next-seo": "^4.17.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-nextjs": "^1.0.6",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.6",
"prettier": "^2.2.1"
},
"babel": {
"presets": [
"next/babel"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}