-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
79 lines (79 loc) · 2.22 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
{
"name": "react-automata",
"version": "4.0.4",
"description": "A state machine abstraction for React",
"main": "dist/react-automata.js",
"module": "dist/react-automata.es.js",
"repository": "[email protected]:MicheleBertoli/react-automata.git",
"author": "Michele Bertoli",
"license": "MIT",
"files": [
"DISCLAIMER",
"dist"
],
"sideEffects": false,
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"precommit": "lint-staged",
"prepublish": "yarn build",
"start": "webpack-dev-server --open",
"test": "jest"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-plugin-annotate-pure-calls": "^0.3.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-idx": "^2.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.8.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"idx": "^2.3.0",
"jest": "^23.5.0",
"lint-staged": "^7.1.3",
"prettier": "^1.14.2",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-hot-loader": "4.3.4",
"react-test-renderer": "^16.4.1",
"rimraf": "^2.6.2",
"rollup": "^0.64.1",
"rollup-plugin-babel": "^3.0.4",
"webpack": "^4.16.5",
"webpack-cli": "^3.0.1",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"glob-to-regexp": "^0.4.0",
"hoist-non-react-statics": "^3.0.1",
"invariant": "^2.2.4",
"memoize-one": "^4.0.0",
"prop-types": "^15.6.1",
"xstate": "^3.3.0"
},
"peerDependencies": {
"react": ">=16.3",
"react-test-renderer": ">=16.3"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}