-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 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
{
"name": "next-super-layout",
"version": "3.3.2",
"description": "Convenient layout routes & React hooks for Next.js",
"author": "Ian Smith <[email protected]>",
"repository": "smithki/next-super-layout",
"license": "MIT",
"sideEffects": false,
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js"
},
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "npm run clean && melodist dev --outdir dist --es-target es6",
"build": "npm run clean && melodist build --outdir dist --no-minify --es-target es6",
"clean": "rimraf dist",
"lint": "eslint --fix --ext .ts,.tsx .",
"test": "echo \"No unit tests... yet :(\" && exit 0",
"test:tree-shaking": "npm run build && agadoo"
},
"devDependencies": {
"@ikscodes/eslint-config": "latest",
"@ikscodes/prettier-config": "latest",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"agadoo": "^2.0.0",
"auto": "^10.32.6",
"eslint": "^7.14.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"melodist": "^0.7.8",
"next": "^12.1.0",
"prettier": "^2.2.0",
"react": "^18.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.5"
},
"peerDependencies": {
"next": "^11.0.0 || ^12.0.0 || ^13.0.0",
"react": "^17.0.0 || ^18.0.0"
},
"prettier": "@ikscodes/prettier-config",
"auto": {
"plugins": [
"npm"
]
}
}