-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.94 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.94 KB
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
{
"name": "styled-content-loader",
"version": "1.2.2",
"description": "Simplest solution for content loader in React and styled-components",
"author": "rfoel",
"license": "MIT",
"repository": "rfoel/styled-content-loader",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10"
},
"keywords": [
"content-loader",
"react",
"styled-components"
],
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && microbundle-crl src/index.tsx --no-compress --format modern,cjs --tsconfig tsconfig.json",
"start": "microbundle-crl src/index.tsx --watch --no-compress --format modern,cjs --tsconfig tsconfig.json",
"start:docs": "cd docs && yarn start",
"prepublish": "yarn build",
"dev": "npm-run-all start:docs"
},
"peerDependencies": {
"react": ">= 16.0.0",
"styled-components": ">= 4.0.0"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.10",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/styled-components": "^5.1.7",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-standard": "^5.0.0",
"microbundle-crl": "^0.13.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"react": "^17.0.1",
"semantic-release": "^17.3.7",
"styled-components": "^5.2.1"
}
}