-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "llamagotchi-client",
"version": "1.0.0",
"description": "Universal React.js starter with the minimum possible code",
"main": "lib/server.js",
"scripts": {
"build": "./node_modules/babel-cli/bin/babel.js src --out-dir lib --plugins transform-react-jsx --presets es2015",
"bundle": "./node_modules/browserify/bin/cmd.js lib/client.js -o public/js/bundle.js",
"start": "npm run build && npm run bundle && node lib/server.js",
"start_watch": "npm-watch start"
},
"watch": {
"start": {
"patterns": ["src","views"],
"extensions": "js,jsx,ejs",
"legacyWatch": true
}
},
"author": "Davide Bizzi",
"license": "BSD",
"dependencies": {
"axios": "0.17.1",
"material-ui": "0.20.0",
"ejs": "^2.3.4",
"express": "^4.13.3",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"npm-watch": "latest",
"browserify": "^12.0.1",
"babel-cli": "^6.1.2",
"babel-plugin-transform-react-jsx": "^6.0.18",
"babel-preset-es2015": "^6.1.2"
}
}