-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.7 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
{
"name": "serverless-v2ex",
"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"
},
"dependencies": {
"@ant-design/icons": "^4.2.2",
"antd-mobile": "^2.3.4",
"axios": "^0.20.0",
"cacheable-response": "^2.1.7",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"next": "latest",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/lru-cache": "^5.1.0",
"@types/node": "^12.12.21",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"babel-plugin-import": "^1.13.1",
"cross-env": "^7.0.2",
"nodemon": "^2.0.5",
"rimraf": "^3.0.2",
"svg-sprite-loader": "^5.0.0",
"typescript": "4.0"
},
"license": "MIT",
"description": "This is a really simple project that shows the usage of Next.js with TypeScript.",
"repository": {
"type": "git",
"url": "git+https://github.com/serverless-plus/serverless-v2ex.git"
},
"keywords": [
"serverless-v2ex",
"serverless",
"v2ex",
"next.js",
"typescript",
"serverless-framework",
"serverless-components",
"tencent-cloud"
],
"author": "yugasun",
"bugs": {
"url": "https://github.com/serverless-plus/serverless-v2ex/issues"
},
"homepage": "https://github.com/serverless-plus/serverless-v2ex#readme"
}