-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.11 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
88
89
90
{
"name": "@caffedpkg/microcore",
"version": "0.1.1",
"description": "Core frameworks and utils library for @caffedpkg modules.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"start": "npm run task:build:development:watch",
"prebuild": "npm run task:build:clean",
"build": "npm run task:build:development",
"predist": "npm test",
"dist": "npm run task:dist:clean && npm run task:build:production",
"postdist": "npm run task:typedoc:clean && npm run task:typedoc",
"lint": "concurrently -n eslint,prettier 'npm run task:eslint' 'npm run task:prettier'",
"lint:fix": "concurrently -n eslint,prettier 'npm run task:eslint:fix' 'npm run task:prettier:fix'",
"test": "npm run task:test",
"task:typedoc:clean": "rm -rf docs/*",
"task:typedoc": "typedoc --options typedoc.json",
"task:build:clean": "rm -rf build/*",
"task:dist:clean": "rm -rf dist/*",
"task:build:development": "NODE_ENV=development rollup -c",
"task:build:development:watch": "NODE_ENV=development rollup -c -w",
"task:build:production": "NODE_ENV=production rollup -c",
"task:eslint": "eslint src/**/*.ts",
"task:eslint:fix": "eslint --fix 'src/**/*.ts'",
"task:prettier": "prettier --check 'src/**/*.ts' --config ./.prettierrc",
"task:prettier:fix": "prettier --write 'src/**/*.ts' --config ./.prettierrc",
"task:test": "jest --verbose --collectCoverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caffed/microcore.git"
},
"contributors": [
{
"email": "[email protected]",
"name": "Carlo Mogavero",
"url": "https://github.com/caffed"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/caffed/microcore/issues"
},
"homepage": "https://github.com/caffed/microcore#readme",
"dependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-typescript": "11.0.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@types/chai": "4.3.4",
"@types/jest": "29.5.14",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/rollup": "0.54.0",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"chai": "4.3.7",
"concurrently": "9.1.0",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-fetch-mock": "3.0.3",
"prettier": "2.8.3",
"punycode": "2.3.1",
"rollup-plugin-auto-external": "2.0.0",
"rollup-plugin-dts": "5.1.1",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-terser": "7.0.2",
"ts-jest": "29.2.5",
"tslib": "2.8.1",
"typedoc": "0.27.2",
"typedoc-plugin-markdown": "4.3.1",
"typescript": "5.7.2"
},
"files": [
"dist/**/*"
]
}