-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.37 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
{
"name": "isomorph-web",
"version": "1.4.4",
"description": "A React SSR and SSG framework inspired by Next.js",
"main": "package/server.js",
"repository": "https://github.com/deve-sh/isomorph",
"scripts": {
"build:package": "babel ./src --extensions \".tsx,.js,.jsx,.ts,.json\" --out-dir ./package",
"publish-package": "npm run build:package && npm publish",
"build:watch": "babel --watch ./src --extensions \".tsx,.js,.jsx,.ts,.json\" --out-dir ./package",
"dev": "concurrently \"npm run build:watch\" \"nodemon ./package/server.js\"",
"start": "node ./package/server.js"
},
"keywords": [
"Isomorphic Web Apps Framework"
],
"author": "Devesh Kumar",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.0",
"@babel/node": "^7.17.10",
"@babel/preset-env": "^7.18.0",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"babel-preset-minify": "^0.5.2",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"concurrently": "^7.2.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.1",
"envify": "^4.1.0",
"express": "^4.18.1",
"fs-extra": "^10.1.0",
"nodemon": "^2.0.16",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"string-to-stream": "^3.0.1",
"tinyify": "^3.0.0"
},
"bin": {
"isomorph-web": "./src/scripts/index.js",
"create-isomorph-app": "./src/scripts/create-isomorph-app.js"
}
}