-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.59 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": "machinate",
"version": "1.1.3",
"description": "practical state management",
"main": "build/lib.js",
"scripts": {
"start": "NODE_ENV=development webpack --watch",
"test": "jest",
"build": "NODE_ENV=production webpack",
"prepublishOnly": "NODE_ENV=production webpack",
"cypress": "cypress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pringshia/machinate.git"
},
"keywords": [
"state",
"management",
"react",
"practical",
"easy",
"simple"
],
"author": "Pratik Ringshia",
"license": "MIT",
"bugs": {
"url": "https://github.com/pringshia/machinate/issues"
},
"homepage": "https://github.com/pringshia/machinate#readme",
"dependencies": {
"dagjs": "^0.1.3",
"hoist-non-react-statics": "^2.5.0",
"prop-types": "^15.6.0",
"react": "^16.2.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react-app": "^3.1.1",
"cypress": "^3.0.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-cypress": "^2.0.1",
"eslint-plugin-flowtype": "^2.45.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.6.1",
"jest": "^22.3.0",
"react-dom": "^16.2.0",
"webpack": "^3.11.0"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/test/setup.js",
"verbose": true,
"testURL": "http://localhost/"
}
}