-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "@bigcommerce/app-sdk-js",
"version": "1.0.0",
"description": "BigCommerce App JavaScript SDK",
"main": "dist/index.js",
"author": "BigCommerce",
"license": "MIT",
"scripts": {
"test": "jest --env=jsdom",
"lint": "eslint --fix --ext '.jsx,.js' src/**",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "https://github.com/bigcommerce/app-sdk-js.git"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.4",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.3",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"jschannel": "git+https://github.com/meenie/jschannel.git",
"lint-staged": "^13.2.1",
"lodash-webpack-plugin": "^0.11.6",
"prettier": "^2.5.1",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
]
}
}