-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 890 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 890 Bytes
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
{
"name": "MaterialDesignInXamlToolkit.Website",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"buildserver": "babel ./src/components --out-dir ./bin/components --presets react,es2015,stage-1",
"buildclient": "browserify -t [ babelify --presets [ react es2015 stage-1 ] ] ./src/clientindex.js -o ./public/js/clientbundle.js"
},
"dependencies": {
"body-parser": "~1.12.0",
"cookie-parser": "~1.3.4",
"debug": "~2.6.9",
"ejs": "^3.1.7",
"express": "~4.12.2",
"jade": "~1.9.2",
"morgan": "~1.9.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"serve-favicon": "~2.2.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1"
}
}