-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.2 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.2 KB
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
{
"name": "sylius-payplug-plugin",
"version": "1.11.1",
"description": "Sylius Payplug Plugin",
"source": "src/index.js",
"scripts": {
"build": "parcel build shop/**/* --dist-dir ../public/assets/shop --no-source-maps",
"build:admin": "parcel build admin/**/* --dist-dir ../public/assets/admin --no-source-maps",
"dev": "parcel watch shop/**/* --dist-dir ../public/assets/shop --no-hmr",
"dev:admin": "parcel watch admin/**/* --dist-dir ../public/assets/admin --no-hmr",
"eslint": "eslint -c .eslintrc ./",
"fix-eslint": "eslint -c .eslintrc ./ --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"browserslist": [
"> 2%",
"last 4 versions",
"ie > 8",
"not dead",
"not op_mob 59"
],
"engines": {
"node": ">=12.18.3"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/eslint-parser": "^7.14.7",
"@parcel/babel-preset-env": "^2.5.0",
"@parcel/transformer-sass": "^2.5.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"parcel": "^2.5.0",
"prettier": "^2.6.0",
"sass": "^1.26.3"
},
"dependencies": {
"jquery": "^3.5.1"
}
}