-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"private": true,
"license": "BSD-3-Clause",
"workspaces": {
"packages": [
"examples/*",
"packages/*"
]
},
"scripts": {
"build": "lerna run build",
"clean": "lerna run clean",
"clean:slate": "lerna run clean:slate && rimraf node_modules",
"integrity": "yarn install && yarn-deduplicate && yarn install",
"webpack": "lerna run webpack",
"webpack:prod": "lerna run webpack:prod"
},
"devDependencies": {
"css-loader": "^5.0.2",
"css-minimizer-webpack-plugin": "^3.0.0",
"file-loader": "^6.2.0",
"lerna": "^3.22.1",
"less-loader": "~7.0.2",
"mini-css-extract-plugin": "^1.3.6",
"npm-run-all": "^4.1.5",
"postcss-loader": "^5.0.0",
"rimraf": "^3.0.2",
"source-map-loader": "^2.0.1",
"style-loader": "^2.0.0",
"svg-url-loader": "^7.1.1",
"ts-loader": "^8.0.17",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.2.4",
"webpack-remove-empty-scripts": "^0.7.1",
"yarn-deduplicate": "^3.1.0"
}
}