forked from parse-community/parse-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.74 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.74 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
{
"private": true,
"dependencies": {
"babel-runtime": "~5.8.25",
"basic-auth": "^1.0.3",
"express": "^4.13.4",
"history": "~1.9.1",
"immutable": "~3.7.5",
"json-file-plus": "^3.2.0",
"marked": "^0.3.5",
"parse": "1.6.14",
"prismjs": "~1.2.0",
"react": "^0.14.0",
"react-dnd": "~2.0.2",
"react-dnd-html5-backend": "~2.0.0",
"react-dom": "^0.14.0",
"react-router": "1.0.0-rc1"
},
"devDependencies": {
"babel-core": "~5.8.12",
"babel-loader": "~5.3.0",
"babel-plugin-remove-proptypes": "~1.0.0",
"css-loader": "~0.18.0",
"http-server": "~0.8.5",
"immutable-devtools": "~0.0.4",
"jest-cli": "^0.7.1",
"js-beautify": "~1.5.0",
"node-sass": "~3.3.2",
"react-addons-test-utils": "^0.14.2",
"sass-loader": "~2.0.1",
"style-loader": "~0.12.3",
"svg-prep": "~1.0.0",
"transform-jest-deps": "^2.1.0",
"webpack": "~1.12.0"
},
"scripts": {
"dashboard": "node ./Parse-Dashboard/index.js & webpack --config build.config.js --progress --watch",
"pig": "http-server ./PIG -p 4041 -s & webpack --config PIG.config.js --progress --watch",
"build": "NODE_ENV=production webpack --config production.config.js && webpack --config PIG.config.js",
"test": "NODE_PATH=./node_modules jest",
"generate": "node scripts/generate.js",
"preinstall": "git update-index --skip-worktree Parse-Dashboard/parse-dashboard-config.json"
},
"jest": {
"testPathDirs": [
"lib"
],
"scriptPreprocessor": "<rootDir>/testing/preprocessor.js",
"testDirectoryName": "tests",
"testFileExtensions": [
"test.js"
],
"unmockedModulePathPatterns": [
"react",
"react-dom",
"react-addons-test-utils",
"fbjs"
]
}
}