-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.31 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
{
"name": "react-cool-text",
"version": "1.0.19",
"description": "React component for displaying text in a cool way.",
"homepage": "https://github.com/patrickbenjamin1/react-cool-text",
"author": "Patrick Benjamin",
"main": "react-cool-text/output/index.js",
"typings": "react-cool-text/output/index.d.ts",
"keywords": [
"react",
"typescript",
"typography"
],
"directories": {
"lib": "react-cool-text/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrickbenjamin1/react-cool-text"
},
"peerDependencies": {
"react": "17.0.2"
},
"scripts": {
"start-playground": "(cd playground && webpack-dev-server --config webpack.config.js --mode development)",
"copy-css": "cp ./react-cool-text/source/theme.css ./react-cool-text/output/theme.css",
"build": "(cd react-cool-text && tsc --pretty -p source -d) && npm run copy-css",
"prepublish": "npm run build",
"clean": "rm -rf playground/output react-cool-text/output",
"clean-full": "npmr clean -- node_modules"
},
"devDependencies": {
"@types/node": "^11.11.3",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/react-helmet": "^5.0.8",
"@types/react-router": "^4.4.5",
"@types/react-router-dom": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"css-loader": "^3.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-simple-import-sort": "^5.0.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.13.0",
"prettier": "^1.19.1",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"svg-inline-loader": "^0.8.0",
"terser-webpack-plugin": "^2.2.1",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
}
}