forked from weird94/react-typed-recyclelist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.3 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
{
"name": "react-typed-recyclelist",
"version": "1.0.0",
"description": "a high perfomance list based react tech stack",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/types/index.d.ts",
"publicUrl": "./",
"scripts": {
"test": "jest",
"start": "parcel ./demo/*/index.html",
"build-demo": "rm -rf ./dist && parcel build ./demo/*/index.html --public-url 'https://weird94.github.io/list/'",
"dev-demo": "rm -rf ./dist && parcel watch ./demo/*/index.html & serve ./dist",
"build-component": "rollup -c && tsc"
},
"dependencies": {
"react": "^16.x"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.19",
"babel-preset-latest": "^6.24.1",
"cross-env": "^7.0.2",
"jest": "^25.1.0",
"parcel-bundler": "^1.12.4",
"react-dom": "^16.13.0",
"rollup": "^1.31.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"serve": "^11.3.0",
"ts-jest": "^25.2.1",
"tslib": "^1.10.0",
"typescript": "^3.7.5"
},
"author": "",
"license": "MIT"
}