-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
{
"name": "service-name",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npm run prettier && cross-env APP_ENV=local next",
"build": "cross-env APP_ENV=production next build",
"start": "cross-env APP_ENV=production next start",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"deploy": "source ./deploy.sh",
"lint": "eslint src/container/**/* pages/**/*",
"lint-fix": "eslint src/container/**/* pages/**/* --fix",
"type-check": "tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"cross-env": "^7.0.2",
"lodash": "^4.17.15",
"morgan": "^1.10.0",
"next": "^9.3.6",
"next-connect": "^0.6.5",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"styled-components": "^4.4.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@types/morgan": "^1.9.0",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/styled-components": "^5.0.1",
"@zeit/next-css": "^1.0.1",
"babel-cli": "^6.26.0",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.10.6",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react-app": "^9.1.2",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.17.0",
"prettier": "^1.19.1",
"serverless-next.js": "^1.12.0-alpha.6",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"url-loader": "^3.0.0"
}
}