-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·39 lines (39 loc) · 1.06 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
{
"name": "silverstripe-dataobject-links",
"version": "2.0.1",
"description": "Adds links to data objects in TinyMCE editor",
"author": "FLXLabs",
"license": "BSD-3-Clause",
"scripts": {
"build": "rm -rf client/dist/* && NODE_ENV=production webpack --mode production --bail --progress",
"dev": "NODE_ENV=development webpack --progress",
"watch": "NODE_ENV=development webpack --watch --progress",
"lint": "eslint client/src && sass-lint -v",
"format": "prettier --write ."
},
"bin": {
"webpack": "./node_modules/webpack/webpack.js"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"devDependencies": {
"@babel/runtime": "^7.20.0",
"@silverstripe/eslint-config": "^1",
"@silverstripe/webpack-config": "^2",
"core-js": "^3.30.2",
"prettier": "^2.8.8",
"webpack": "^5.74.0",
"webpack-cli": "^5.1.1"
},
"dependencies": {
"@apollo/client": "^3.7.1",
"jquery": "^3.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5"
}
}