This repository has been archived by the owner on Apr 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
78 lines (78 loc) · 2.25 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
70
71
72
73
74
75
76
77
78
{
"name": "effector-next",
"version": "0.0.0-real-version-will-be-set-on-ci",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"!example",
"tools",
"dist"
],
"scripts": {
"test": "run-s test:*",
"test:types": "tsc --noEmit",
"test:lint": "eslint . --ext .js,.ts,.tsx",
"build": "run-p build:*",
"build:module": "rollup -c",
"build:declarations": "tsc --emitDeclarationOnly && api-extractor run",
"prebuild": "rimraf dist",
"prepublish": "npm run build",
"postbuild": "rimraf dist/types",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"license": "MIT",
"author": "weyheyhey <[email protected]>",
"repository": "github:effector/nextjs",
"keywords": [
"effector",
"react",
"next"
],
"dependencies": {
"next-cookies": "^2.0.3"
},
"peerDependencies": {
"effector": ">=20.13.5",
"effector-react": ">=20.6.0",
"next": ">=9.0.0",
"react": ">=16.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.1.1",
"@microsoft/api-extractor": "^7.8.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@wowvendor/commitlint-config": "^1.0.6",
"@wowvendor/eslint-config-base": "^2.2.2",
"@wowvendor/eslint-config-react": "^3.2.2",
"@wowvendor/eslint-config-typescript": "^2.2.1",
"cz-customizable": "^6.3.0",
"effector": "^21.7.2",
"effector-react": "^21.0.8",
"eslint": "^7.24.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"next": "^10.0.2",
"npm-run-all": "^4.1.5",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"react": "^16.13.1",
"rimraf": "^3.0.2",
"rollup": "^2.45.2",
"typescript": "^4.2.4"
}
}