-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 966 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 966 Bytes
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
{
"name": "webpack-aws-lambda-sample",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "npm run build:dev && (webpack --config build/webpack.dev.js --watch & nodemon dist/bundle.dev.js -q)",
"build:prod": "webpack --config build/webpack.prod.js --display-modules",
"build:dev": "webpack --config build/webpack.dev.js",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx --quiet --fix"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/faker": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"faker": "^4.1.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"ts-loader": "^8.0.4",
"typescript": "^3.9.6",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.2"
}
}