-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.07 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
{
"name": "quick-score-demo",
"version": "0.0.10",
"description": "",
"keywords": [
"string",
"score",
"sort",
"search",
"fuzzy",
"filter",
"quicksilver",
"autocomplete",
"auto-complete",
"filter list",
"intuitive sort",
"smart sort"
],
"license": "MIT",
"author": "John Dunning (https://github.com/fwextensions)",
"repository": "github:fwextensions/quick-score-demo",
"homepage": "https://github.com/fwextensions/quick-score-demo",
"main": "src/index.tsx",
"sideEffects": false,
"scripts": {
"prebuild": "npm run lint",
"build": "webpack --env production",
"dev": "webpack-dev-server --open --mode development",
"watch": "webpack --watch --env development",
"lint": "eslint src",
"update": "npm update quick-score"
},
"dependencies": {
"@sindresorhus/fnv1a": "^2.0.1",
"fast-memoize": "^2.5.2",
"fuse.js": "^6.5.3",
"fuzzysort": "^1.2.1",
"liquidmetal": "^1.3.0",
"match-sorter": "^6.3.1",
"quick-score": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-virtualized": "^9.22.3",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@types/react": "^17.0.44",
"@types/react-dom": "^17.0.15",
"@types/react-virtualized": "^9.21.21",
"@types/styled-components": "^5.1.25",
"babel-loader": "^8.2.5",
"babel-plugin-styled-components": "^2.0.7",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"eslint": "^8.13.0",
"eslint-plugin-react": "^7.29.4",
"html-webpack-plugin": "^5.5.0",
"prop-types": "^15.8.1",
"source-map-loader": "^3.0.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-config-utils": "^2.3.1",
"webpack-dev-server": "^4.8.1"
}
}