-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
93 lines (93 loc) · 2.48 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
{
"name": "react-typing-animation",
"version": "1.6.2",
"author": "Adam King https://github.com/adamjking3",
"homepage": "https://adamjking3.github.io/react-typing-animation-example/",
"repository": "github:adamjking3/react-typing-animation",
"license": "MIT",
"keywords": [
"react",
"typing",
"animation",
"animated",
"typewriter",
"typist",
"typer"
],
"scripts": {
"build": "mkdir -p ./dist && NODE_ENV=production babel ./src --out-dir ./dist",
"build:example": "npm run clean && NODE_ENV=production webpack --progress --config ./example/webpack.config.js",
"clean": "rimraf ./example/build/* && npm run lint",
"lint": "eslint --ignore-path .gitignore .",
"start": "NODE_ENV=development node ./example/webpack-dev-server.js",
"prebuild": "npm run lint",
"prepublish": "npm run build"
},
"devDependencies": {
"assets-webpack-plugin": "^3.5.1",
"babel-cli": "^6.26.0",
"babel-eslint": "7.2.3",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react-app": "^3.1.2",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.10",
"eslint": "4.4.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "2.35.0",
"eslint-plugin-graphql": "^1.5.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "^7.6.1",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.30.1",
"postcss-cssnext": "^2.10.0",
"postcss-loader": "^2.1.1",
"prop-types": "^15.6.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-hot-loader": "^3.1.3",
"rimraf": "^2.6.2",
"style-loader": "^0.17.0",
"webpack": "^3.10.0",
"webpack-dev-middleware": "^1.12.2",
"webpack-hot-middleware": "^2.21.2"
},
"dependencies": {
"raf": "^3.4.0",
"shortid": "^2.2.8",
"styled-components": "^4.1.3"
},
"peerDependencies": {
"prop-types": "^15.6.1",
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"main": "./dist/index.js",
"babel": {
"presets": [
"env",
"react-app"
]
},
"eslintConfig": {
"extends": [
"react-app",
"prettier"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 2,
"useTabs": false
},
"eslintIgnore": [
"dist",
"example/build"
]
}