forked from Automattic/sensei
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "sensei-lms",
"version": "2.4.0",
"homepage": "https://woocommerce.com/products/sensei/",
"repository": {
"type": "git",
"url": "https://github.com/Automattic/sensei.git"
},
"license": "GPL-2.0+",
"main": "gulpfile.js",
"devDependencies": {
"@automattic/calypso-build": "^5.0.1",
"@babel/core": "^7.7.2",
"@wordpress/babel-preset-default": "^4.7.0",
"@wordpress/blocks": "^6.8.0",
"@wordpress/components": "^8.4.0",
"@wordpress/data": "^4.10.0",
"@wordpress/editor": "^9.8.0",
"@wordpress/i18n": "^3.7.0",
"@wordpress/jest-preset-default": "^1.0.6",
"@wordpress/scripts": "^5.1.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"cross-env": "^5.2.1",
"css-loader": "^3.2.0",
"del": "^3.0.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.6.0",
"eslint-plugin-react": "^7.12.2",
"eslint-wpcom": "npm:eslint@^5.16.0",
"fs-extra": "^7.0.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-checktextdomain": "^1.1.1",
"gulp-chmod": "^2.0.0",
"gulp-minify-css": "^1.2.4",
"gulp-phpunit": "^0.26.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^2.1.0",
"gulp-sort": "^2.0.0",
"gulp-uglify": "^3.0.2",
"gulp-wp-pot": "^2.3.5",
"gulp-zip": "^4.2.0",
"jest": "^25.0.0",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^4.13.0",
"orchestrator": "^0.3.8",
"sass-loader": "^7.3.1",
"style-loader": "^0.21.0",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0"
},
"dependencies": {
"select2": "4.0.5"
},
"scripts": {
"test": "npm run test-php && npm run test-js",
"test-php": "gulp test",
"test-js": "wp-scripts test-unit-js --passWithNoTests",
"block-editor-assets": "cross-env NODE_ENV=production npx calypso-build --config webpack.block-editor-assets.config.js --env.WP",
"block-editor-assets:dev": "npx calypso-build --config webpack.block-editor-assets.config.js --env.WP",
"block-editor-assets:watch": "npx calypso-build --config webpack.block-editor-assets.config.js --env.WP --watch",
"lint-js": "./node_modules/eslint/bin/eslint.js assets/block-editor --ext=js,jsx",
"lint-js:fix": "./node_modules/eslint/bin/eslint.js assets/block-editor --ext=js,jsx --fix",
"lint-js-wpcom": "./node_modules/eslint-wpcom/bin/eslint.js --no-eslintrc --config .eslintrc.wpcom.json --ignore-path .eslintignore-wpcom ."
}
}