-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.93 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
{
"name": "nextjs-effector",
"version": "0.0.0-set-by-ci",
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
}
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/*"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "next dev",
"build": "rollup -c",
"test": "jest",
"test:watch": "yarn test --watchAll",
"build:app": "next build",
"start:app": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix"
},
"devDependencies": {
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@fontsource/acme": "^4.5.7",
"@fontsource/fira-mono": "^4.5.8",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/jest": "^28.1.1",
"@types/node": "17.0.38",
"@types/react": "18.0.10",
"@types/react-dom": "18.0.5",
"autoprefixer": "^10.4.7",
"axios": "^0.27.2",
"babel-plugin-module-resolver": "^4.1.0",
"clsx": "^1.1.1",
"effector": "^22.3.0",
"effector-react": "^22.3.3",
"esbuild": "^0.14.43",
"eslint": "^8.16.0",
"eslint-kit": "^5.5.0",
"jest": "^28.1.1",
"jest-serializer-path": "^0.1.15",
"nanoid": "^3.0.0",
"next": "12.1.6",
"patronum": "^1.12.3",
"postcss": "^8.4.14",
"react": "18.1.0",
"react-dom": "18.1.0",
"rollup": "^2.75.6",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-terser": "^7.0.2",
"tailwindcss": "^3.0.24",
"ts-jest": "^28.0.5",
"typescript": "4.7.2"
},
"peerDependencies": {
"effector": ">=22.2.0",
"effector-react": ">=22.3.3",
"next": ">=12.0.0",
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
}
}