forked from parse-community/parse-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.71 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "parse-dashboard",
"parseDashboardFeatures": [
"Data Browser",
"Cloud Code Viewer",
"Cloud Code Jobs Viewer and Runner",
"Parse Config",
"API Console",
"Class Level Permissions Editor",
"Pointer Permissions Editor",
"Send Push Notifications",
"Logs Viewer",
"Push Status Page",
"Relation Editor"
],
"description": "The Parse Dashboard",
"keywords": [
"parse",
"dashboard"
],
"homepage": "https://github.com/ParsePlatform/parse-dashboard",
"bugs": "https://github.com/ParsePlatform/parse-dashboard/issues",
"version": "1.3.0",
"repository": {
"type": "git",
"url": "https://github.com/ParsePlatform/parse-dashboard"
},
"license": "SEE LICENSE IN LICENSE",
"files": [
"Parse-Dashboard",
"bin",
"README.md",
"LICENSE"
],
"dependencies": {
"bcryptjs": "2.3.0",
"body-parser": "1.15.2",
"commander": "2.20.0",
"connect-flash": "0.1.1",
"cookie-session": "2.0.0-alpha.1",
"create-react-class": "15.6.3",
"csurf": "1.9.0",
"express": "4.13.4",
"json-file-plus": "3.2.0",
"package-json": "5.0.0",
"passport": "0.4.0",
"passport-local": "1.0.0",
"react-helmet": "5.2.0"
},
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/plugin-proposal-decorators": "7.4.0",
"@babel/plugin-transform-regenerator": "7.4.3",
"@babel/plugin-transform-runtime": "7.4.3",
"@babel/polyfill": "7.4.3",
"@babel/preset-env": "7.4.3",
"@babel/preset-react": "7.0.0",
"@babel/runtime": "7.4.3",
"babel-eslint": "10.0.0",
"babel-loader": "8.0.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"css-loader": "1.0.0",
"eslint": "5.0.0",
"eslint-plugin-jest": "22.4.1",
"eslint-plugin-react": "7.12.4",
"file-loader": "3.0.0",
"history": "4.9.0",
"http-server": "0.11.1",
"immutable": "3.8.1",
"immutable-devtools": "0.1.3",
"jest-cli": "23.2.0",
"js-beautify": "1.9.1",
"marked": "0.6.1",
"node-sass": "4.9.3",
"parse": "2.3.2",
"path-to-regexp": "3.0.0",
"prismjs": "1.16.0",
"prop-types": "15.7.2",
"query-string": "6.4.2",
"react": "16.8.6",
"react-dnd": "7.4.5",
"react-dnd-html5-backend": "7.4.4",
"react-dom": "16.8.6",
"react-router": "4.4.0-beta.8",
"react-router-dom": "4.4.0-beta.8",
"react-test-renderer": "16.8.6",
"request": "2.87.0",
"request-promise": "4.2.4",
"sass-loader": "7.1.0",
"style-loader": "0.23.0",
"svg-prep": "1.0.4",
"webpack": "4.29.6",
"webpack-cli": "3.3.0"
},
"scripts": {
"dev": "node ./Parse-Dashboard/index.js & webpack --config webpack/build.config.js --devtool eval-source-map --progress --watch",
"dashboard": "node ./Parse-Dashboard/index.js & webpack --config webpack/build.config.js --progress --watch",
"pig": "http-server ./PIG -p 4041 -s & webpack --config webpack/PIG.config.js --progress --watch",
"build": "NODE_ENV=production webpack --config webpack/production.config.js && webpack --config webpack/PIG.config.js",
"test": "NODE_PATH=./node_modules jest",
"lint": "eslint . --ignore-path .gitignore --cache",
"pretest": "npm run lint",
"generate": "node scripts/generate.js",
"prepublish": "webpack --config webpack/publish.config.js --progress",
"start": "node ./Parse-Dashboard/index.js"
},
"bin": {
"parse-dashboard": "./bin/parse-dashboard"
},
"engines": {
"node": ">=4.3"
},
"main": "Parse-Dashboard/app.js",
"jest": {
"roots": [
"src/lib"
],
"transform": {
".*": "<rootDir>/testing/preprocessor.js"
},
"unmockedModulePathPatterns": [
"react",
"react-dom",
"react-addons-test-utils",
"fbjs"
]
}
}