generated from toastyboost/rollup-starter
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
executable file
·82 lines (82 loc) · 2.4 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
79
80
81
82
{
"name": "effector-inspector",
"version": "0.0.0-real-version-will-be-set-on-ci",
"main": "index.js",
"module": "index.mjs",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js",
"default": "./index.mjs"
},
"./index.mjs": "./index.mjs"
},
"packageManager": "[email protected]",
"types": "dist/index.d.ts",
"license": "MIT",
"files": [
"index.js",
"index.js.map",
"index.mjs",
"index.mjs.map",
"dist"
],
"scripts": {
"build": "rollup --config rollup.config.js",
"lint": "eslint --ext .ts,.tsx src",
"commit": "git-cz",
"test": "echo no tests",
"prepublishOnly": "yarn build",
"start": "parcel serve ./usage/index.html",
"lint:style": "stylelint src/**/*.{js,css,ts,tsx} --fix",
"format": "prettier --write 'src/**/*.{js,css,ts,tsx}'",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "17.2.0",
"@commitlint/config-conventional": "17.2.0",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.1.0",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/babel__core": "^7.1.20",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"@vitejs/plugin-legacy": "^2.3.1",
"babel-plugin-module-resolver": "^4.1.0",
"babel-preset-solid": "^1.6.2",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.0.2",
"effector": "^22.4.0",
"effector-solid": "^0.22.6",
"eslint": "^6.6.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"husky": "^8.0.2",
"lint-staged": "^10.5.4",
"prettier": "^2.7.1",
"ramda.clone": "^0.26.1",
"rollup": "^3.3.0",
"rollup-plugin-typescript2": "^0.34.1",
"solid-js": "^1.6.2",
"solid-styled-components": "^0.28.5",
"stylelint": "^14.15.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^9.0.0",
"terser": "^5.4.0",
"typescript": "^4.2.3",
"typescript-plugin-styled-components": "^1.4.4",
"vite": "^3.2.3",
"vite-plugin-solid": "^2.4.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}