-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.05 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.05 KB
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
{
"name": "imreact",
"version": "0.1.0",
"description": "a react-like library",
"main": "index.js",
"scripts": {
"build:types": "tsc --emitDeclarationOnly",
"watch:js": "rollup -c -w",
"build:js": "rollup -c rollup.config.build.js",
"dev": "npm run build:types && npm run watch:js",
"build": "npm run build:types && npm run build:js",
"build:test": "cd test && babel index.jsx --out-file index.js"
},
"author": "liuyize",
"license": "ISC",
"devDependencies": {
"@babel/cli": "7.13.0",
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-decorators": "7.13.5",
"@babel/plugin-transform-react-jsx": "7.12.17",
"@babel/preset-env": "7.12.11",
"@babel/preset-typescript": "7.12.7",
"@rollup/plugin-babel": "5.2.2",
"@rollup/plugin-node-resolve": "11.0.1",
"rollup": "2.36.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-livereload": "2.0.0",
"rollup-plugin-server": "0.7.0",
"tslint": "6.1.3",
"typescript": "4.1.3"
}
}