-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "css-plugin-example",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"clean": "yarn workspaces run clean",
"pretest": "yarn build",
"test": "mocha -r ts-node/register \"packages/*/dist/test/**/*.test.js\"",
"build": "npm-run-all build:*",
"build:ts": "tsc --build",
"start": "tsc --build -w",
"serve": "yarn workspace example-react run serve",
"preserve": "yarn build-example",
"build-example": "yarn workspace example-react run build"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/execa": "^2.0.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.3",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@types/rimraf": "^3.0.1",
"@types/sinon": "^10.0.2",
"@types/sinon-chai": "^3.2.5",
"@webpack-cli/generators": "^2.2.0",
"chai": "^4.3.4",
"html-webpack-plugin": "^5.3.2",
"mocha": "^9.0.3",
"npm-run-all": "^4.1.5",
"playwright": "^1.13.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"serve": "^12.0.0",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"ts-loader": "^9.2.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"vue-loader": "^16",
"webpack": "^5.46.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}