-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.96 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
{
"name": "@trunkrs/woocommerce",
"version": "1.2.10",
"author": "Trunkrs B.V.",
"license": "MIT",
"private": true,
"dependencies": {
"@wordpress/element": "^3.1.1",
"auth0-js": "^9.16.2",
"axios": "^0.21.1",
"clsx": "^1.1.1",
"formik": "^2.2.9",
"react-event-listener": "^0.6.6",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@svgr/webpack": "^5.5.0",
"@types/auth0-js": "^9.14.4",
"@types/react-event-listener": "^0.4.12",
"@types/wordpress__blocks": "^9.0.0",
"@types/wordpress__components": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"@woocommerce/dependency-extraction-webpack-plugin": "1.1.0",
"@woocommerce/eslint-plugin": "1.1.0",
"@wordpress/babel-plugin-import-jsx-pragma": "^3.0.5",
"@wordpress/env": "^4.1.0",
"@wordpress/scripts": "^12.2.1",
"concurrently": "^6.2.0",
"copy-webpack-plugin": "^6.4.1",
"eslint": "^7.30.0",
"eslint-config-airbnb-base-typescript-prettier": "^3.1.1",
"eslint-config-airbnb-typescript-prettier": "^4.1.0",
"prettier": "^2.1.2",
"ts-loader": "^8.3.0",
"typescript": "^4.3.5"
},
"scripts": {
"start": "wp-env start --xdebug",
"stop": "wp-env stop",
"clean": "wp-env clean all",
"destroy": "wp-env destroy",
"watch": "wp-scripts start",
"build": "wp-scripts build",
"lint:css": "wp-scripts lint-style",
"lint:ts": "concurrently \"tsc --noEmit\" \"eslint --ext ts,tsx --quiet --fix .\"",
"lint:pkg-json": "wp-scripts lint-pkg-json"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}