-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.39 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
{
"name": "zest",
"version": "1.0.0",
"description": "A chrome extension as a bcapp toolkit, to help debug and test in browser.",
"scripts": {
"clean": "rm -Rf ./dist",
"build": "npm run clean && webpack --mode=production",
"dev": "npm run clean && webpack --mode=development",
"lint": "eslint .",
"format": "prettier --ignore-path .eslintignore --write \"**/*.+(js|json)\"",
"validate": "npm run lint && npm run format"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:bigcommerce-labs/zest.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bigcommerce-labs/zest/issues"
},
"homepage": "https://github.com/bigcommerce-labs/zest#readme",
"devDependencies": {
"autoprefixer": "^10.4.14",
"css-loader": "^6.8.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"html-webpack-plugin": "^5.5.1",
"husky": "^8.0.3",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.24",
"postcss-loader": "^7.3.2",
"postcss-preset-env": "^8.4.1",
"prettier": "^2.8.8",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.2",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2"
},
"dependencies": {
"@pgrabovets/json-view": "^2.7.1"
}
}