-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
72 lines (72 loc) · 2.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@paciolan/remote-component-starter",
"version": "1.0.0-semantic-versioning",
"description": "Remote Component Starter",
"private": true,
"browser": "dist/main.js",
"author": "Paciolan",
"license": "MIT",
"scripts": {
"build": "npm run clean && cross-env NODE_ENV=production webpack --mode production",
"build:dev": "npm run clean && cross-env NODE_ENV=development webpack --mode development",
"webpack-dev-server": "cross-env NODE_ENV=development webpack-dev-server -d --port 9090 --config webpack-dev-server.config.js --open",
"start": "concurrently -n webpack,webpack-dev-server -c green,cyan \"npm run build:dev -- --watch --verbose\" \"npm run webpack-dev-server\"",
"clean": "rimraf dist",
"cz": "git-cz",
"test": "echo no tests",
"test:changed": "npm run test -- --changedSince HEAD",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint ."
},
"dependencies": {
"react": "^16.14.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@paciolan/eslint-config-react": "^1.0.4",
"@paciolan/remote-component": "^2.10.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"concurrently": "^5.3.0",
"core-js": "^2.6.12",
"cross-env": "^7.0.3",
"eslint": "^7.15.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"git-cz": "^4.7.6",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.6",
"prettier": "^2.2.1",
"react-dom": "^16.14.0",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"webpack": "^4.44.2",
"webpack-assets-manifest": "^3.1.1",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint && npm run build && npm run test:changed",
"pre-push": "npm run test:coverage"
}
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
}
}