-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.55 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
{
"name": "teact",
"version": "1.0.0",
"description": "Tiny and fast alternative for React",
"main": "index.js",
"scripts": {
"build": "webpack",
"dev:benchmark": "webpack serve --mode development",
"build:benchmark": "npm run build && cp ./dist/teact* ./docs/benchmark",
"dev:demo": "webpack serve --config demo/webpack.config.js --mode development",
"build:demo": "webpack --config demo/webpack.config.js --mode development",
"build:docs": "npm run build:demo && npm run build:benchmark && git add -A && git commit -m \"[Build Docs]\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ajaxy/teact.git"
},
"keywords": [
"react",
"jsx",
"tsx",
"framework"
],
"author": "Alexander Zinchuk (alexander@zinchuk.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ajaxy/teact/issues"
},
"homepage": "https://github.com/Ajaxy/teact#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/react": "^18.0.21",
"babel-loader": "^8.2.5",
"html-webpack-plugin": "^5.5.0",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.11.1"
}
}