This repository has been archived by the owner on Mar 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 2.17 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
64
65
66
67
68
69
{
"name": "@scacap/next-app-builder",
"version": "0.0.1",
"description": "Middleware pipeline to create next.js App.",
"main": "./dist/index.js",
"author": "[email protected]",
"peerDependencies": {
"next": "^11.1.1",
"react": "^16.13.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ScaCap/next-app-builder.git"
},
"bugs": {
"url": "https://github.com/ScaCap/next-app-builder/issues"
},
"license": "Apache-2.0",
"scripts": {
"eslint-fix": "eslint './src/**/*.{ts,tsx}' --fix",
"eslint": "eslint './src/**/*.{ts,tsx}'",
"cleanup": "rm -rf dist",
"build:types": "tsc --emitDeclarationOnly",
"build:transpile": "babel src --extensions '.js,.ts,.tsx' --out-dir dist",
"prepublishOnly": "yarn cleanup && yarn build:transpile && yarn build:types",
"postpublish": "yarn cleanup",
"typecheck": "tsc --noEmit",
"test": "jest"
},
"private": false,
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/plugin-proposal-class-properties": "7.16.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.16.0",
"@babel/plugin-proposal-object-rest-spread": "7.16.0",
"@babel/plugin-proposal-optional-chaining": "7.16.0",
"@babel/plugin-transform-runtime": "7.16.4",
"@babel/preset-env": "7.16.4",
"@babel/preset-react": "7.16.0",
"@babel/preset-typescript": "7.16.0",
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8",
"@typescript-eslint/eslint-plugin": "2.33.0",
"@typescript-eslint/parser": "2.33.0",
"babel-eslint": "10.0.3",
"babel-loader": "8.1.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.5",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-import": "2.20.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.18.0",
"eslint-plugin-react-hooks": "2.3.0",
"jest": "26.6.3",
"next": "12.3.1",
"prettier": "2.1.2",
"react": "16.13.1",
"react-dom": "16.12.0",
"ts-loader": "7.0.4",
"typescript": "3.9.2"
},
"files": [
"dist"
]
}