forked from ianbjorndilling/react-typewriter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.36 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
{
"name": "react-typewriter",
"version": "0.4.1",
"description": "React components for automatic typing effects.",
"main": "./build/react-typewriter.js",
"scripts": {
"prepublish": "npm run build",
"build": "./node_modules/.bin/webpack -p",
"dev-build": "./node_modules/.bin/webpack -d --progress --colors",
"watch-build": "./node_modules/.bin/webpack -d --watch --progress --colors",
"dev-server": "./node_modules/.bin/webpack-dev-server --port 3000",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx ./src"
},
"keywords": [
"animated",
"typing",
"react",
"component"
],
"author": "Ian Dilling <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ianbjorndilling/react-typewriter.git"
},
"dependencies": {
"react": "^0.14.7"
},
"devDependencies": {
"babel-core": "^6.5.2",
"babel-eslint": "^3.1.20",
"babel-loader": "^6.2.3",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"eslint": "^0.24.0",
"eslint-plugin-react": "^2.6.4",
"node-libs-browser": "^0.5.2",
"react-hot-loader": "^1.2.7",
"webpack": "^1.10.0",
"webpack-dev-server": "^1.10.1"
}
}