-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.46 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "npm run build && webpack serve --config example/webpack.config.js",
"run:example": "npm run build && webpack serve --config example/webpack.config.js",
"run:template-explorer": "npm run build && node scripts/runTemplateExplorer.js",
"watch": "node scripts/watch.js",
"build": "node scripts/build.js",
"lint": "eslint --format codeframe --ext .js packages/*/src/** packages/*/index.js",
"lint:fix": "eslint --fix --ext .js packages/*/src/** packages/*/index.js",
"test": "npm run build && jest",
"postinstall": "lerna bootstrap",
"clean": "lerna clean",
"contributors:init": "all-contributors init",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"engines": {
"node": ">=12.16.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
},
"dependencies": {},
"devDependencies": {
"all-contributors-cli": "^6.20.0",
"css-loader": "^5.0.1",
"esbuild": "^0.8.42",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"html-webpack-plugin": "^4.5.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"prettier": "^2.2.1",
"style-loader": "^2.0.0",
"webpack": "^5.15.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1"
}
}