forked from ssbeefeater/react-typed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.69 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
{
"name": "react-typed",
"version": "1.2.0",
"description": "A react wrapper for typed.js",
"main": "dist/react-typed.js",
"types": "./react-typed.d.ts",
"scripts": {
"build": "webpack",
"start": "start-storybook -p 6006",
"test": "jest --coverage"
},
"author": "Mike Antoniadis <ssbeefeater@gmail.com> (http://ssbeefeater.github.io/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ssbeefeater/react-typed.git"
},
"tags": [
"react",
"typed.js"
],
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.1.10",
"@storybook/addon-info": "^5.1.10",
"@storybook/addon-knobs": "^5.1.10",
"@storybook/addon-links": "^5.1.10",
"@storybook/react": "^5.1.10",
"@types/react": "^16.8.8",
"@types/typed.js": "^2.0.9",
"babel-eslint": "^8.0.2",
"babel-loader": "^8.0.5",
"babel-register": "^6.26.0",
"copy-webpack-plugin": "^5.0.4",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^4.12.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.5.1",
"html-webpack-plugin": "^2.30.1",
"jest": "^24.5.0",
"jest-babel": "^1.0.1",
"raf": "^3.4.0",
"react": "^16.6.1",
"react-dom": "^16.6.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.0",
"webpack-dev-server": "^3.1.14"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"dependencies": {
"prop-types": "^15.6.0",
"typed.js": "^2.0.6"
}
}