-
Notifications
You must be signed in to change notification settings - Fork 144
/
package.json
76 lines (76 loc) · 2.07 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
{
"private": true,
"name": "isomorphic-style-loader",
"version": "5.4.0",
"description": "CSS style loader for Webpack optimized for critical path CSS rendering and isomoprhic web apps",
"repository": "kriasoft/isomorphic-style-loader",
"author": "Kriasoft <hello@kriasoft.com> (https://www.kriasoft.com)",
"contributors": [
"Konstantin Tarkus <hello@tarkus.me> (https://medium.com/@tarkus)",
"Vladimir Kutepov",
"Michael Duve <mduve@designmail.net> (https://mduve.devdone.de)"
],
"license": "MIT",
"keywords": [
"webpack",
"webpack-loader",
"webpack loader",
"loader",
"css",
"scss",
"style",
"styles",
"style-loader",
"style loader",
"react",
"reactjs",
"isomorphic",
"universal",
"critical-css",
"critical css",
"critical-path-css",
"critical path css"
],
"main": "src/index.js",
"dependencies": {
"hoist-non-react-statics": "^3.0.0",
"loader-utils": "^1.4.2",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-jest": "^27.0.6",
"create-react-class": "^15.6.3",
"eslint": "^7.31.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^4.2.0",
"fs-extra": "^7.0.1",
"husky": "^1.3.1",
"prettier": "^2.3.2",
"jest": "^27.0.6",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"rollup": "^1.2.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-uglify": "^6.0.2"
},
"scripts": {
"lint": "node tools/lint",
"test": "node tools/test",
"build": "node tools/build",
"pre-commit": "node tools/pre-commit"
}
}