-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 758 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 758 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
{
"name": "face-recognition",
"version": "0.1.0",
"main": "main.js",
"repository": "git@github.com:cham11ng/face-recognition.git",
"author": "Sagar Chamling <sgr.raee@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.6.4",
"@babel/preset-env": "^7.2.0",
"babel-loader": "8.0.6",
"css-loader": "^3.2.0",
"eslint": "^6.5.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^4.1.0",
"node-sass": "^7.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"webpack": "^5.104.1",
"webpack-cli": "^3.3.6"
},
"scripts": {
"dev": "webpack",
"watch": "webpack --watch",
"lint:fix": "eslint --fix src",
"build": "NODE_ENV=production webpack"
}
}