-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
79 lines (79 loc) · 2.92 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
78
79
{
"name": "silverstripe-cloudinary",
"version": "2.0.0",
"description": "Adds the Cloudinary browser to the CMS.",
"bin": {
"webpack": "./node_modules/webpack/webpack.js"
},
"engines": {
"node": "16.13.0",
"npm": "8.19.1"
},
"config": {
"paths": {
"js": "client/src/js",
"css": "client/src/css",
"dist": "client/dist"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run lint && npm run build-js && npm run build-css",
"build-js": "NODE_ENV=production webpack --config webpack.config.js --progress",
"build-css": "npm run build-css-sass && npm run build-css-postcss",
"build-css-sass": "sass $npm_package_config_paths_css/bundle.scss $npm_package_config_paths_dist/bundle.css --source-map",
"build-css-postcss": "postcss --use autoprefixer --use postcss-pxtorem --use cssnano --replace $npm_package_config_paths_dist/bundle.css --map",
"lint": "npm run lint-js && npm run lint-css",
"lint-js": "eslint webpack.config.js $npm_package_config_paths_js",
"lint-css": "stylelint $npm_package_config_paths_css/{**/*,*}.scss --custom-syntax postcss-scss",
"watch": "concurrently --kill-others 'npm run watch-js' 'npm run watch-css'",
"watch-js": "NODE_ENV=development webpack --watch",
"watch-css": "watch 'npm run lint-css && npm run build-css' $npm_package_config_paths_css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MadeHQ/silverstripe-cloudinary.git"
},
"keywords": [
"silverstripe",
"cloudinary",
"mademedia",
"madehq"
],
"author": "Hiren Patel <hiren.patel@made.media>",
"license": "ISC",
"bugs": {
"url": "https://github.com/MadeHQ/silverstripe-cloudinary/issues"
},
"homepage": "https://github.com/MadeHQ/silverstripe-cloudinary#readme",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"babel-plugin-lodash": "^3.3.4",
"concurrently": "^8.2.1",
"cssnano": "^6.0.1",
"eslint": "^8.50.0",
"eslint-plugin-react": "^7.33.2",
"eslint-webpack-plugin": "^4.0.1",
"path": "^0.12.7",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"postcss-pxtorem": "^6.0.0",
"postcss-scss": "^4.0.9",
"sass": "^1.68.0",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^34.0.0",
"terser-webpack-plugin": "^5.3.9",
"watch": "^1.0.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"cloudinary-core": "^2.13.0",
"lodash": "^4.17.21"
}
}