forked from afry/apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
131 lines (131 loc) · 3.63 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "@afconsult/apollo",
"version": "1.3.4",
"description": "Design system for ÅF Web Apps",
"main": "dist/js/apollo.js",
"repository": "https://github.com/afconsult/apollo",
"author": "afconsult",
"license": "MIT",
"private": false,
"keywords": [
"afconsult",
"apollo",
"react",
"components",
"component library"
],
"files": [
"LICENSE",
"README.md",
"dist",
"src"
],
"scripts": {
"start": "webpack-dev-server --open --config ./webpack/test.config.js",
"build": "webpack --config ./webpack/prod.config.js",
"lint": "prettier --write \"**/*.{html,js,jsx,json,md,yaml}\" && eslint --fix \"**/*.{js,jsx}\"",
"lint:ci": "prettier --check \"**/*.{html,js,jsx,json,md,yaml}\" && eslint \"**/*.{js,jsx}\"",
"test": "jest",
"test:ci": "yarn run test --runInBand",
"check": "yarn lint && yarn test",
"check:ci": "yarn lint:ci && yarn test:ci",
"commit": "git-cz",
"publish": "cross-var yarn publish --new-version $npm_package_version",
"release": "release-it --config ./.release-it.json -n"
},
"dependencies": {
"classnames": "2.2.6",
"normalize.css": "^8.0.0",
"react-lottie": "1.2.3"
},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=16.8",
"react-dom": ">=16.8"
},
"devDependencies": {
"@babel/core": "7.4.0",
"@babel/preset-env": "7.4.0",
"@babel/preset-react": "7.0.0",
"autoprefixer": "^8.0.0",
"babel-eslint": "8.2.1",
"babel-jest": "24.5.0",
"babel-loader": "8.0.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"clean-webpack-plugin": "^0.1.19",
"commitizen": "3.0.7",
"cross-env": "^5.1.3",
"cross-var": "^1.1.0",
"css-loader": "^0.28.9",
"cssnano": "^3.10.0",
"cz-conventional-changelog": "2.1.0",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.11.2",
"eslint": "5.15.3",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jest": "22.4.1",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.12.4",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.0.6",
"husky": "1.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "24.5.0",
"jest-enzyme": "7.0.2",
"lint-staged": "8.1.5",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"path": "^0.12.7",
"postcss": "^6.0.16",
"postcss-browser-reporter": "^0.5.0",
"postcss-custom-media": "^6.0.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.0",
"postcss-preset-env": "^5.1.0",
"postcss-reporter": "^5.0.0",
"prettier": "1.16.4",
"prop-types": "15.7.2",
"react": "16.8.4",
"react-dom": "16.8.4",
"react-hot-loader": "^3.1.3",
"react-test-renderer": "^16.2.0",
"release-it": "^8.0.1",
"style-loader": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "4.6.0",
"webpack-cli": "^2.0.10",
"webpack-combine-loaders": "^2.0.3",
"webpack-dev-server": "^3.1.0",
"webpack-licenses-plugin": "^0.0.3",
"webpack-merge": "^4.1.2"
},
"jest": {
"setupFilesAfterEnv": [
"./tests/setup.js"
],
"moduleNameMapper": {
"\\.(scss|sass|css)$": "identity-obj-proxy"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"**/*.+(js|jsx)": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
}
}