forked from FormidableLabs/spectacle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.2 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.2 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "spectacle",
"version": "2.1.0",
"description": "ReactJS Powered Presentation Framework",
"main": "lib/index.js",
"scripts": {
"clean:lib": "rimraf lib",
"clean:dist": "rimraf dist",
"build:lib": "cross-env NODE_ENV=production babel src -d lib --copy-files && babel example/src -d example/lib --copy-files",
"build:dist": "cross-env NODE_ENV=production webpack --config webpack.config.production.js",
"lint": "eslint --ext .js,.jsx src",
"deploy": "npm run build:dist && surge -p .",
"start": "node server.js",
"test": "jest --verbose"
},
"author": "",
"license": "MIT",
"dependencies": {
"component-playground": "^2.0.0",
"history": "^4.6.1",
"lodash": "^4.17.4",
"marksy": "^0.4.2",
"normalize.css": "^7.0.0",
"radium": "^0.19.1",
"react-redux": "^5.0.5",
"react-transition-group": "^1.1.3",
"react-typography": "^0.15.10",
"redux": "^3.0.4",
"redux-actions": "^2.0.3",
"styled-components": "^1.4.6",
"victory-core": "^15.2.0"
},
"peerDependencies": {
"prop-types": "^15.5.8",
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"babel-plugin-react-transform": "^2.0.0-beta1",
"babel-plugin-transform-decorators-legacy": "^1.2.0",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.23.0",
"cross-env": "^5.0.0",
"css-loader": "^0.28.2",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-formidable": "^3.0.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-react": "^7.0.1",
"express": "^4.15.3",
"file-loader": "^0.11.1",
"jest": "^20.0.4",
"jest-serializer-enzyme": "^1.0.0",
"node-libs-browser": "^2.0.0",
"prop-types": "^15.5.10",
"raw-loader": "^0.5.1",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.3.6",
"rimraf": "^2.6.1",
"style-loader": "^0.18.1",
"surge": "^0.19.0",
"url-loader": "^0.5.8",
"webpack": "^2.6.0",
"webpack-dev-middleware": "^1.10.2",
"webpack-hot-middleware": "^2.18.0"
},
"jest": {
"moduleNameMapper": {
"\\.(css)$": "<rootDir>/__mocks__/styleMock.js"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-enzyme"
]
}
}