-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
32 lines (32 loc) · 930 Bytes
/
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
{
"name": "random-fake-text-generator",
"version": "1.0.0",
"description": "A google chrome extension to generate and fill random text into a form field, Built on top of fakerjs",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode production",
"dev": "webpack --mode development ",
"watch": "webpack --mode development --watch"
},
"author": "Shobi P P",
"license": "ISC",
"dependencies": {
"faker": "^4.1.0",
"jquery": "^3.3.1"
},
"devDependencies": {
"@types/chrome": "0.0.74",
"@types/jquery": "^3.3.17",
"@types/faker": "^4.1.4",
"copy-webpack-plugin": "^4.5.3",
"css-loader": "^1.0.0",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.9.4",
"sass-loader": "^7.1.0",
"ts-loader": "^5.2.2",
"typescript": "^3.1.3",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
}
}