forked from jsreport/jsreport-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.85 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.85 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
93
94
95
96
97
98
99
100
101
102
103
{
"name": "jsreport-studio",
"description": "jsreport templates editor and designer",
"author": "Jan Blaha",
"license": "MIT",
"version": "2.1.4",
"repository": {
"type": "git",
"url": "https://github.com/jsreport/jsreport-studio"
},
"homepage": "https://github.com/jsreport/jsreport-studio",
"keywords": [
"jsreport"
],
"main": "src/server.js",
"standard": {
"ignore": [
"extensions.js",
"webpack/**"
],
"parser": "babel-eslint"
},
"scripts": {
"start": "jsreport-studio-start",
"run": "npm run build && jsreport-studio-start --run-only",
"test": "mocha test/.setup.js test --compilers js:babel-register --recursive --require mocha-clean --require ignore-styles",
"test:watch": "npm test -- --watch",
"prepublish": "in-publish && npm run build || not-in-publish",
"docs": "jsdoc2md src/Studio.js > static/Studio.md",
"build": "jsreport-studio-build --config webpack/prod.config.js --disable-chunks-info"
},
"dependencies": {
"bluebird": "3.5.1",
"compression": "1.6.2",
"lodash": "4.17.5",
"serve-favicon": "2.4.5",
"serve-static": "1.13.2"
},
"devDependencies": {
"babel-eslint": "8.2.1",
"brace": "0.11.1",
"clean-webpack-plugin": "0.1.18",
"enzyme": "2.3.0",
"eslint": "3.3.0",
"eslint-config-standard": "5.3.1",
"eslint-config-standard-jsx": "1.2.0",
"eslint-plugin-babel": "3.2.0",
"eslint-plugin-react": "5.1.1",
"filesaver.js-npm": "1.0.1",
"font-awesome": "4.7.0",
"font-awesome-webpack": "0.0.4",
"html-webpack-plugin": "2.17.0",
"ignore-styles": "2.0.0",
"in-publish": "2.0.0",
"js-beautify-jsreport": "1.6.18",
"js-cookie": "2.1.1",
"jsdom": "9.1.0",
"jsreport-studio-dev": "1.3.0",
"mocha": "2.4.5",
"mocha-clean": "1.0.0",
"react": "0.14.8",
"react-ace": "5.9.0",
"react-addons-test-utils": "0.14.8",
"react-dom": "0.14.8",
"react-helmet": "3.1.0",
"react-inline-css": "2.1.1",
"react-list": "0.7.18",
"react-modal": "1.3.0",
"react-redux": "4.4.5",
"react-router": "2.4.1",
"react-router-redux": "4.0.4",
"react-split-pane": "0.1.42",
"react-transform-catch-errors": "1.0.2",
"react-transform-hmr": "1.0.4",
"redbox-react": "1.2.5",
"redux": "3.5.2",
"redux-batched-actions": "0.1.2",
"redux-immutable-state-invariant": "1.2.3",
"redux-logger": "2.6.1",
"redux-mock-store": "1.0.3",
"redux-thunk": "2.1.0",
"shortid": "2.2.8",
"should": "8.4.0",
"socket.io-client": "1.4.6",
"standard": "11.0.0",
"strip-loader": "0.1.2",
"superagent": "1.8.2",
"webpack-dev-middleware": "1.6.1",
"webpack-hot-middleware": "2.10.0"
},
"files": [
"lib",
"jsreport.config.js",
"src",
"static",
"webpack",
".babelrc",
"index.js"
],
"engines": {
"node": ">=8.9"
}
}