forked from frctl/fractal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2 KB
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
{
"name": "fractal",
"private": true,
"type": "module",
"dependencies": {
"anymatch": "^3.1.3",
"chokidar": "^3.6.0",
"cli-table3": "^0.6.3",
"columnify": "^1.6.0",
"execa": "^8.0.1",
"express": "^4.18.3",
"fs-extra": "^11.2.0",
"get-port": "^7.1.0",
"gray-matter": "^4.0.3",
"handlebars": "^4.7.8",
"istextorbinary": "^9.5.0",
"js-beautify": "^1.15.1",
"js-yaml": "^4.1.0",
"liftoff": "^4.0.0",
"lodash": "^4.17.21",
"log-update": "^6.0.0",
"minimist": "^1.2.8",
"mixwith": "^0.1.1",
"nunjucks": "^3.2.4",
"path-to-regexp": "^6.2.1",
"promised-handlebars": "^2.0.1",
"prop-types": "^15.8.1",
"readable-stream": "^4.5.2",
"resolve-from": "^5.0.0",
"semver": "^7.6.0",
"throat": "^6.0.2",
"twig": "^1.17.1",
"vinyl": "^3.0.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"husky": "^9.0.11",
"jest-extended": "^4.0.2",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"mock-argv": "^4.0.0",
"mock-fs": "^5.2.0",
"node-fetch": "^3.3.2",
"prettier": "^3.2.5",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-prettier": "^4.1.0",
"stylelint-scss": "^5.3.2",
"vitest": "^1.4.0"
},
"scripts": {
"clean": "lerna clean",
"bootstrap": "lerna bootstrap --hoist --strict --ci --force-local",
"eslint": "eslint . --ignore-path .gitignore",
"stylelint": "stylelint --ignore-path .gitignore \"**/*.scss\"",
"validate": "npm run eslint && npm run stylelint",
"format": "prettier . --write",
"test": "pnpm run test:unit",
"test:unit": "vitest run",
"prepare": "husky install"
},
"pnpm": {
"overrides": {
"loader-utils@>=2.0.0 <2.0.4": ">=2.0.4",
"loader-utils@>=2.0.0 <2.0.3": ">=2.0.3",
"axios@>=0.8.1 <1.6.0": ">=1.6.0"
}
}
}