-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.54 KB
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
{
"name": "@trioxis/react-cafe-cms",
"version": "0.2.0",
"description": "Build beautiful progressive web apps whilst enabling non-devs to edit content",
"keywords": [
"cms",
"react"
],
"homepage": "https://github.com/Trioxis/react-cafe-cms",
"bugs": "https://github.com/Trioxis/react-cafe-cms/issues",
"license": "MIT",
"author": {
"email": "hello@trioxis.com",
"name": "Trioxis",
"url": "http://trioxis.com"
},
"main": "lib/index.js",
"repository": "Trioxis/react-cafe-cms",
"scripts": {
"dev": "nodemon --watch src --exec \"yarn prepublish\"",
"prepublish": "babel -s inline -d lib src --ignore __tests__,test.js",
"test": "jest"
},
"jest": {
"setupFiles": [
"./jest/setup.js"
],
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"prop-types": "^15.5.10",
"react-apollo": "^1.4.2",
"recompose": "^0.23.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"jest": "^21.2.1",
"jest-enzyme": "^4.0.0",
"nodemon": "^1.12.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0"
},
"peerDependencies": {
"react": "^15.6.1 || ^16.0.0"
}
}