-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
96 lines (96 loc) · 3.86 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
91
92
93
94
95
96
{
"name": "racing-bars",
"version": "0.0.0",
"description": "Bar chart race made easy 🎉",
"author": "Hatem Hosny",
"license": "MIT",
"keywords": [],
"private": true,
"type": "module",
"repository": {
"url": "https://github.com/hatemhosny/racing-bars"
},
"scripts": {
"start": "run-p watch serve website",
"website": "npm run copy:data && cd website && npm run start",
"serve": "live-server . --open=demo/ --watch=build,demo --cors --quiet",
"watch": "nodemon --watch src -e \"*\" ./scripts/build.js --dev",
"build": "run-s clean build:*",
"build:ts": "tsc --emitDeclarationOnly --outFile build/racing-bars.d.ts && node ./scripts/patch-types.js",
"build:lib": "node ./scripts/build.js",
"build:ts-website": "cd website && npm run typecheck",
"build:website": "npm run copy:data && cd website && npm run build",
"copy:data": "recursive-copy data website/static/data",
"typedocs": "typedoc src/index.ts --out build/typedocs --exclude **/*.spec.ts --excludeExternals",
"deploy": "gh-pages -m \"[ci skip] Updates\" -d website/build",
"fix": "run-s fix:*",
"fix:prettier": "prettier src --ignore-path .eslintignore --write",
"fix:prettier-website": "prettier website --ignore-path .eslintignore --write",
"fix:eslint": "eslint --fix --ext js,jsx,ts,tsx src",
"fix:eslint-website": "eslint --fix --ext js,jsx,ts,tsx website",
"fix:stylelint": "stylelint --fix \"src/**/*.{css,scss}\"",
"fix:stylelint-website": "stylelint --fix \"website/**/*.{css,scss}\"",
"test": "run-s test:*",
"test:unit": "jest src",
"test:lint": "run-s lint:*",
"test:bundlewatch": "bundlewatch --config .bundlewatch.config.json",
"lint:prettier": "prettier src --ignore-path .eslintignore --list-different",
"lint:prettier-website": "prettier website --ignore-path .eslintignore --list-different",
"lint:eslint": "eslint --ext js,jsx,ts,tsx src",
"lint:eslint-website": "eslint --ext js,jsx,ts,tsx website",
"lint:stylelint": "stylelint \"src/**/*.{css,scss}\"",
"lint:stylelint-website": "stylelint \"website/**/*.{css,scss}\"",
"postinstall": "cd website && npm install",
"reset": "git clean -dfx && git reset --hard && npm i",
"clean": "recursive-delete build && recursive-delete tmp && recursive-delete website/build && recursive-delete website/static/data && recursive-delete website/static/lib && recursive-delete website/docs/api",
"start-release": "node ./scripts/start-release.js"
},
"dependencies": {
"d3": "7.9.0"
},
"devDependencies": {
"@bitjson/typedoc": "0.15.0-0",
"@inquirer/prompts": "^5.3.8",
"@types/d3": "7.4.3",
"@types/jest": "29.5.12",
"@types/live-server": "1.2.3",
"@types/node": "22.4.1",
"@types/react": "18.3.4",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
"@vue/runtime-core": "3.2.45",
"autoprefixer": "10.4.20",
"brotli-size": "4.0.0",
"bundlewatch": "0.4.0",
"conventional-changelog": "3.1.25",
"cross-env": "7.0.3",
"cssnano": "6.0.2",
"esbuild": "0.23.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.8.0",
"eslint-plugin-jsdoc": "50.2.2",
"eslint-plugin-no-only-tests": "3.3.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"gh-pages": "6.1.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"live-server": "1.2.2",
"nodemon": "3.1.4",
"npm-run-all": "4.1.5",
"postcss": "8.4.41",
"postcss-cli": "11.0.0",
"postcss-scss": "4.0.9",
"prettier": "3.3.3",
"recursive-fs": "2.1.0",
"sass": "1.77.8",
"stylelint": "16.8.2",
"stylelint-config-sass-guidelines": "12.0.0",
"ts-jest": "29.2.4",
"tslib": "^2.6.3",
"typedoc": "0.25.13",
"typedoc-plugin-missing-exports": "2.2.0",
"typescript": "5.4.5"
}
}