-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.59 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
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "exos-scripts",
"version": "0.0.0-semantic-release",
"description": "Set of out-of-the-box extensible scripts that helps you with the lifecycle of your React + TypeScript applications",
"main": "./lib/index.js",
"types": "./lib/types/index.d.ts",
"bin": {
"exos-scripts": "./lib/index.js"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/exosjs/exos-scripts"
},
"keywords": [],
"author": "nanovazquez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/exosjs/exos-scripts/issues"
},
"homepage": "https://github.com/exosjs/exos-scripts#readme",
"scripts": {
"lint": "eslint --ext .js --ext .ts src/",
"test": "npm run build && jest --config=./src/scripts/test/jest.config.library.js --coverage=false",
"build": "rm -rf lib && tsc",
"prepublishOnly": "npm run build",
"publish": "semantic-release"
},
"peerDependencies": {
"react": "^16.4.0",
"react-dom": "^16.4.0"
},
"dependencies": {
"@svgr/webpack": "^5.3.0",
"@teamsupercell/typings-for-css-modules-loader": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"chalk": "^4.1.0",
"copy-webpack-plugin": "^5.1.1",
"cross-spawn": "7.0.3",
"css-loader": "^3.4.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^7.1.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"sass-loader": "^8.0.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.3",
"stylelint": "^13.6.0",
"stylelint-config-property-sort-order-smacss": "^6.3.0",
"stylelint-config-standard": "^20.0.0",
"ts-jest": "^26.0.0",
"ts-loader": "^6.2.2",
"tslib": "^2.0.0",
"url-loader": "^4.0.0",
"webpack": "^4.42.1",
"webpack-dev-server": "^3.10.3"
},
"devDependencies": {
"@types/copy-webpack-plugin": "^5.0.0",
"@types/cross-spawn": "^6.0.2",
"@types/eslint": "^7.2.0",
"@types/jest": "^25.2.1",
"@types/mini-css-extract-plugin": "^0.9.1",
"@types/node": "^13.11.1",
"@types/stylelint": "^9.10.1",
"@types/webpack": "^4.41.10",
"@types/webpack-dev-server": "^3.10.1",
"semantic-release": "^17.0.8",
"typescript": "^3.9.3",
"webpack-cli": "^3.3.11"
}
}