This repository has been archived by the owner on Sep 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.63 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
{
"name": "vanilla-recycler-view",
"version": "1.1.10",
"description": "high performance UI rendering library for web browser",
"main": "build/index.js",
"types": "build/index.d.ts",
"author": "winetree94",
"license": "MIT",
"keywords": [
"javascript",
"reusabledom",
"virtualdom",
"vanilla",
"frontend",
"browser",
"webpack",
"web",
"ie"
],
"homepage": "https://winetree94.github.io/VanillaRecyclerView",
"repository": "https://github.com/winetree94/VanillaRecyclerView",
"files": [
"dist",
"build"
],
"scripts": {
"start": "webpack serve",
"build": "tsc && cross-env NODE_ENV=production webpack",
"serve:dist": "http-server -p 9009 ./dist",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^1.1.5",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-prettier": "^3.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.0",
"http-server": "^0.12.3",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.3",
"prettier": "^2.2.1",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.0.3",
"ts-loader": "^8.0.11",
"typescript": "^4.1.2",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
}
}