forked from kvandake/lexorank-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.04 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
{
"name": "lexorank",
"_id": "[email protected]",
"version": "1.0.5",
"description": "A reference implementation of a list ordering system like JIRA's Lexorank algorithm",
"author": {
"name": "kvandake"
},
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"LexoRank",
"JIRA"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kvandake/lexorank-ts.git"
},
"bugs": {
"url": "https://github.com/kvandake/lexorank-ts/issues"
},
"homepage": "https://github.com/kvandake/lexorank-ts",
"scripts": {
"clean": "rimraf lib",
"build": "yarn run clean && tsc",
"test": "jest",
"lint": "eslint -c .eslintrc.js --ext .ts ./src",
"prepublishOnly": "yarn test && yarn run lint",
"preversion": "yarn run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"chromatic": "npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@dnd-kit/core": "^6.0.5",
"@dnd-kit/sortable": "^7.0.1",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"babel-loader": "^8.2.5",
"chromatic": "^6.8.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-storybook": "^0.6.4",
"jest": "^29.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"typescript": "^4.8.2",
"yarn": "^1.22.19"
},
"files": [
"lib/**/*"
],
"dependencies": {}
}