-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.2 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.2 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
{
"name": "re-boilerplate",
"version": "1.0.0",
"description": "A boilerplate to speed up development of React projects",
"main": "index.js",
"scripts": {
"build": "webpack",
"build-babel": "npm run build-babel-server && npm run build-babel-client",
"build-babel-server": "babel src/server --out-dir ./dist",
"build-babel-client": "babel src/client --copy-files --out-dir ./dist/public",
"start": "node ./dist/server.js",
"clean": "rimraf dist node_modules",
"test": "jest ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kallaway/re-boilerplate.git"
},
"keywords": [
"React",
"Boilerplate"
],
"author": "Alexander Kallaway",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kallaway/re-boilerplate/issues"
},
"homepage": "https://github.com/Kallaway/re-boilerplate#readme",
"dependencies": {
"express": "^4.16.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.2",
"webpack": "^3.10.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"html-webpack-plugin": "^2.30.1",
"jest": "^22.1.4",
"webpack-node-externals": "^1.6.0"
}
}