-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "transpilation-free-starter-kit",
"engines": {
"node": ">=14"
},
"version": "1.0.0",
"description": "Starter project with jsx-like syntax and type checking without transpilation.",
"type": "module",
"scripts": {
"prettier:check": "prettier --check './**/*.{js,json,html,css}'",
"prettier:write": "prettier --write './**/*.{js,json,html,css}'",
"serve": "serve -s",
"tsc": "tsc",
"build": "node tools/build.js"
},
"keywords": [
"bundler-free",
"starter-kit"
],
"author": "Peter Solopov <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.12",
"@rollup/plugin-babel": "^5.3.0",
"babel-plugin-htm": "^3.0.0",
"copy-dir": "^1.3.0",
"es-module-shims": "^0.10.3",
"prettier": "^2.2.1",
"rollup": "^2.44.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"serve": "^14.2.0",
"typescript": "^4.2.3"
},
"dependencies": {
"history": "^5.0.0",
"htm": "^3.0.4",
"jss": "^10.6.0",
"preact": "^10.5.13",
"preact-router": "^3.2.1"
}
}