-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.25 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "vtex_utils_extension",
"version": "1.6.1",
"description": "A Browser extension with VTEX utils",
"scripts": {
"clean": "rimraf dist/* || rm -rf dist/*",
"lint": "eslint src/js/**/*ts __tests__/**/*.ts --fix",
"start": "npm run clean && webpack serve --open --mode=development || npx tomou-na-jabiraca",
"prebuild": "npm run test",
"build": "npm run clean && webpack --mode production || npx tomou-na-jabiraca",
"postinstall": "husky install",
"test": "jest --config ./jest.config.ts",
"test:watch": "jest --config ./jest.config.ts --watch"
},
"keywords": [
"vtex",
"chrome",
"javascript",
"api",
"ecommerce"
],
"author": {
"name": "Raphael Barbosa Rodrigues",
"email": "[email protected]",
"url": "https://raphaelbr.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/RaphaelBRodrigues/vtex-utils-extension.git"
},
"homepage": "https://raphaelbrodrigues.github.io/vtex-utils-extension",
"license": "GPL-3.0",
"dependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@types/chrome": "0.0.145",
"babel-loader": "^8.2.2",
"babel-preset-es2015": "^6.24.1",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^5.2.6",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^6.2.0",
"html-loader": "^2.1.2",
"html-webpack-live-reload-plugin": "^1.0.8",
"mini-css-extract-plugin": "^1.6.0",
"node-sass": "^6.0.0",
"sass-loader": "^12.0.0",
"style-loader": "^2.0.0",
"ts-loader": "^9.2.3",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"husky": {
"hooks": {
"pre-commit": "echo Here we go again..."
}
},
"devDependencies": {
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.1",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"html-webpack-plugin": "^5.3.2",
"husky": "^6.0.0",
"jest": "^27.0.6",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"browser": {
"[module-name]": false
},
"engines": {
"node": "14.15.1"
}
}