-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 1.21 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
{
"name": "@sitegeist/inspectorgadget",
"license": "MIT",
"private": true,
"scripts": {
"build": "concurrently 'yarn build:js' 'yarn build:css'",
"build:js": "lerna run --stream build",
"build:css": "TAILWIND_MODE=build NODE_ENV=production postcss Resources/Private/Css/styles.css -o Resources/Public/Css/Plugin.css",
"watch": "concurrently 'yarn watch:css' 'yarn watch:js'",
"watch:js": "lerna run --stream --parallel watch",
"watch:css": "TAILWIND_MODE=watch NODE_ENV=development postcss -w Resources/Private/Css/styles.css -o Resources/Public/Css/Plugin.css",
"test": "lerna run --stream test"
},
"workspaces": [
"Neos.Ui/*"
],
"devDependencies": {
"@neos-project/neos-ui-extensibility": "^7.0.2",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@types/classnames": "^2.3.1",
"@types/jest": "^26.0.22",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"autoprefixer": "^10.2.6",
"concurrently": "^6.2.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"postcss": "^8.3.0",
"postcss-cli": "^8.3.1",
"tailwindcss": "^2.1.2",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}