-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.68 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
{
"name": "react-mf-styleguide",
"repository": "[email protected]:react-microfrontends/styleguide.git",
"author": "Joel Denning <[email protected]>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack --mode=production",
"analyze": "webpack --mode=production --env.analyze=true",
"lint": "eslint src",
"prettier": "prettier --write './**'",
"test": "jest --passWithNoTests",
"watch-tests": "jest --watch",
"coverage": "jest --coverage",
"deploy": "git push && yarn build && gh-pages -d dist"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && concurrently yarn:test yarn:lint"
}
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@types/jest": "^24.0.23",
"autoprefixer": "^9.7.4",
"babel-eslint": "^11.0.0-beta.2",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"concurrently": "^5.0.1",
"css-loader": "^3.3.2",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.10.1",
"eslint-config-react-important-stuff": "^2.0.0",
"eslint-plugin-prettier": "^3.1.2",
"gh-pages": "^3.1.0",
"husky": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"style-loader": "^1.0.1",
"systemjs-webpack-interop": "^1.1.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-config-single-spa-react": "^1.0.3",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"tailwindcss": "^1.2.0"
}
}