forked from intellispire/commercestore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.31 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
{
"name": "commercestore",
"version": "4.0.0-a1",
"description": "The easiest way to sell digital information with WordPress.",
"private": true,
"author": "CommerceStore",
"license": "GPL-2.0-or-later",
"keywords": [
"wordpress",
"wordpress-plugin"
],
"homepage": "https://commercestore.com",
"repository": {
"type": "git",
"url": "https://github.com/intellispire/commercestore/"
},
"bugs": {
"url": "https://github.com/intellispire/commercestore/issues"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.9.0"
},
"main": "webpack.config.js",
"dependencies": {
"chart.js": "2.7.2",
"flot": "0.8.0-alpha",
"jquery-creditcardvalidator": "1.0.0",
"jquery-validation": "^1.19.3",
"jquery.payment": "3.0.0",
"moment": "2.22.2"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"@wordpress/base-styles": "3.1.0",
"@wordpress/dom": "2.15.0",
"@wordpress/postcss-plugins-preset": "^1.6.0",
"@wordpress/scripts": "12.5.0",
"copy-webpack-plugin": "6.2.0",
"cross-env": "7.0.2",
"grunt": "^1.0.4",
"grunt-checktextdomain": "^1.0.1",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-compress": "^1.4.3",
"grunt-contrib-copy": "^1.0.0",
"grunt-force-task": "^2.0.0",
"grunt-replace": "^2.0.1",
"grunt-shell": "^3.0.1",
"grunt-wp-i18n": "^1.0.2",
"load-grunt-tasks": "^3.5.2",
"locutus": "^2.0.11",
"makepot": "^0.3.0",
"mini-css-extract-plugin": "0.9.0",
"postcss-rtl": "^1.7.3",
"uglify-es": "3.3.9",
"uglifyjs-webpack-plugin": "^1.1.2",
"uuid-random": "1.3.0",
"webpack": "4.44.2",
"webpack-cli": "3.3.12",
"webpack-fix-style-only-entries": "0.5.1",
"webpack-rtl-plugin": "^2.0.0"
},
"scripts": {
"build": "wp-scripts build --webpack-no-externals && grunt build",
"dev": "cross-env NODE_ENV=production wp-scripts start --webpack-no-externals",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses --production",
"lint": "npm-run-all -s lint:*",
"lint:css": "wp-scripts lint-style 'assets/css/admin/**/*.scss' --fix",
"lint:js": "wp-scripts lint-js ./assets/js/ ",
"lint:js--fix": "wp-scripts lint-js ./assets/js --fix",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"package-plugin": "npm run build && grunt build",
"test:unit": "wp-scripts test-unit-js --config tests/jest/jest.config.js"
}
}