-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
{
"name": "jsx-pistols",
"description": "TypeScript and JSX as web templates, for NodeJS.",
"version": "0.6.0-dev",
"license": "MIT",
"homepage": "https://github.com/mkalam-alami/jsx-pistols#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "tsc --build tsconfig.json",
"test": "tsc --build test/tsconfig.json && ts-node ./test/index.ts && cross-env NODE_ENV=production node ./test/dist/index.js"
},
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"minimatch": "^3.0.4",
"preact": "^10.5.5",
"preact-render-to-string": "^5.1.11",
"require-from-string": "^2.0.2"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/lru-cache": "^5.1.0",
"@types/minimatch": "^3.0.3",
"@types/node": "^14.14.16",
"@types/require-from-string": "^1.2.0",
"axios": "^0.21.1",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mkalam-alami/jsx-pistols.git"
},
"keywords": [
"express",
"html",
"jsx",
"nodejs",
"rendering",
"server",
"server-side rendering",
"template",
"templates",
"templating",
"typescript"
],
"author": "Marwane Kalam-Alami",
"bugs": {
"url": "https://github.com/mkalam-alami/jsx-pistols/issues"
}
}