This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.01 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
{
"name": "mpdwsgi-client-web",
"version": "2.0.0-alpha",
"description": "Web client for mpd-wsgi",
"repository": {
"type": "git",
"url": "https://github.com/fixme-lausanne/mpdwsgi-web"
},
"author": "Samuel El-Borai <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fixme-lausanne/mpdwsgi-web/issues"
},
"homepage": "https://github.com/fixme-lausanne/mpdwsgi-web",
"scripts": {
"test": "jest",
"build:js": "browserify -e src/index.jsx -o static/output/bundle.js",
"build:css": "echo -e \"warning: \\033[0;33m empty script \\033[0m\"",
"build": "npm run build:js && npm run build:css",
"watch:js": "watchify -vd -e src/index.jsx -o static/output/bundle.js",
"watch:css": "echo -e \"warning: \\033[0;33m empty script \\033[0m\"",
"watch": "npm run watch:js & npm run watch:css",
"browser": "browser-sync start --server static --files \"static/*.html, static/output/*.js, static/css/*.css\"",
"prebuild:js": "mkdir -p static/output",
"prebuild:css": "mkdir -p static/output",
"prewatch:js": "mkdir -p static/output",
"prewatch:css": "mkdir -p static/output"
},
"dependencies": {
"classnames": "^2.1.2",
"js-csp": "^0.4.1",
"lodash": "^4.17.20",
"object-assign": "^3.0.0",
"react": "^0.13.3",
"react-dropzone": "^1.2.2",
"react-inlinesvg": "^0.4.1",
"react-router": "^0.13.3",
"react-toastr": "^1.4.0",
"react-tooltip": "^0.2.4",
"superagent": "^1.2.0"
},
"devDependencies": {
"babelify": "^6.1.2",
"browser-sync": "^2.7.6",
"browserify": "^10.2.3",
"jest-cli": "^0.4.5",
"onchange": "^1.1.0",
"react-tools": "^0.13.3",
"watchify": "^3.2.1"
},
"browserify": {
"transform": [
"babelify"
]
},
"jest": {
"testFileExtensions": [
"js",
"jsx"
],
"testDirectoryName": "tests",
"scriptPreprocessor": "<rootDir>/bin/jsx-preprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
}
}