-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.47 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
83
84
85
86
87
{
"name": "rollup-scripts",
"version": "0.0.131",
"description": "Rollup scripts is a zero configuration compiler and bundler",
"main": "src/index.js",
"bin": {
"rollup-scripts": "./bin/index.js"
},
"scripts": {
"exec": "node ./bin/index.js",
"lint": "biome check ./",
"format": "biome format ./ --write",
"test": "jest --collect-coverage --detect-open-handles",
"test:proj": "CWD=$PWD/proj npm run exec -- build",
"watch:proj": "CWD=$PWD/proj npm run exec -- dev",
"prepublishOnly": "npm run test && npm run lint && npm run format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scssyworks/rollup-scripts.git"
},
"keywords": [
"rollup",
"bundler",
"scripts",
"builder",
"tooling",
"lint",
"test"
],
"author": "scssyworks",
"license": "MIT",
"bugs": {
"url": "https://github.com/scssyworks/rollup-scripts/issues"
},
"homepage": "https://github.com/scssyworks/rollup-scripts#readme",
"files": [
"bin/",
"constants/",
"plugins/",
"src/",
"templates/",
"utils/",
"LICENSE",
"!**/*.test.js"
],
"dependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/eslint-plugin": "^7.25.1",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@babel/runtime": "^7.25.6",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-graphql": "^2.0.4",
"@rollup/plugin-html": "^1.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-yaml": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"browserslist": "^4.23.3",
"chalk": "^4.1.2",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.6.2",
"handlebars": "^4.7.8",
"jest": "^29.7.0",
"rollup": "^4.21.2",
"rollup-scripts-utils": "^0.0.13",
"typescript": "^5.6.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/jest": "^29.5.12"
}
}