-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
85 lines (85 loc) · 2.63 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "serverless-cnode",
"version": "0.0.1",
"scripts": {
"dev": "nodemon",
"build": "rimraf .next && cross-env NODE_ENV=production next build && tsc --project tsconfig.server.json",
"build:sls": "rimraf .next && cross-env NODE_ENV=production SERVERLESS=true next build && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node ./dist/index.js",
"deploy": "serverless deploy",
"deploy:layer": "serverless deploy --target=./layer"
},
"keywords": [
"next.js",
"cnode"
],
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"classnames": "^2.2.6",
"express": "^4.17.1",
"immutability-helper": "^3.1.1",
"koa": "^2.12.1",
"koa-router": "^9.0.1",
"lodash": "^4.17.19",
"lru-cache": "^5.1.1",
"markdown": "^0.5.0",
"next": "^9.4.4",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"throttle-debounce": "^2.2.1",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/generator": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@types/koa": "^2.11.3",
"@types/koa-router": "^7.4.1",
"@types/lru-cache": "^5.1.0",
"@types/next": "^9.0.0",
"@types/react": "^16.9.38",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"autoprefixer": "^9.8.0",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-assets": "^1.0.2",
"cross-env": "^7.0.2",
"css-loader": "^3.6.0",
"dotenv-webpack": "^1.8.0",
"file-loader": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^5.0.1",
"next-compose-plugins": "^2.2.0",
"next-images": "^1.4.0",
"next-optimized-images": "^2.6.1",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"postcss-loader": "^3.0.0",
"postcss-pxtransform": "^2.2.9",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.5",
"url-loader": "^4.1.0"
},
"description": "> A cnodejs client using next.js",
"repository": {
"type": "git",
"url": "git+https://github.com/serverless-plus/serverless-cnode.git"
},
"author": "yugasun",
"bugs": {
"url": "https://github.com/serverless-plus/serverless-cnode/issues"
},
"homepage": "https://github.com/serverless-plus/serverless-cnode#readme"
}