This repository has been archived by the owner on Aug 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.5 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
{
"name": "react-express-template",
"version": "0.0.1",
"engines": {
"node": "8.2.1"
},
"description": "Description of the project",
"main": "index.js",
"repository": "[email protected]:romariolopezc/react-express-starter.git",
"author": "RLópez <[email protected]>",
"license": "MIT",
"scripts": {
"start": "npm run build && NODE_ENV=production node src/server/app.js",
"start:dev": "node src/server/app.js",
"lint": "eslint --ext .js,.jsx src",
"build": "rimraf dist/ && webpack --config config/webpack.prod.config.js --progress --colors",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"express": "4.15.4",
"react": "15.6.1",
"react-dom": "15.6.1"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-jest": "20.0.3",
"babel-loader": "7.1.2",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"enzyme": "2.9.1",
"eslint": "4.5.0",
"eslint-config-airbnb": "15.1.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.2.1",
"html-webpack-plugin": "2.30.1",
"jest": "20.0.4",
"react-hot-loader": "next",
"react-test-renderer": "15.6.1",
"rimraf": "2.6.1",
"webpack": "3.5.5",
"webpack-dev-middleware": "1.12.0",
"webpack-hot-middleware": "2.18.2",
"webpack-merge": "4.1.0"
}
}