-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 886 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 886 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
{
"name": "universal-react-delta-blue",
"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 dev": "npm run build && npm run bundle && node lib/server.js"
},
"author": "Vance Lucas",
"license": "BSD",
"dependencies": {
"ejs": "^2.6.1",
"express": "^4.16.4",
"react": "^16.8.3",
"react-dom": "^16.8.3"
},
"devDependencies": {
"browserify": "^16.2.3",
"babel-cli": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1"
}
}