-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.6 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "react-node-template",
"version": "1.1.0",
"description": "A React Node Template",
"scripts": {
"start": "cross-env NODE_ENV=development npm-run-all --parallel open:src lint:watch ",
"open:src": "babel-node build/server.js",
"lint": "esw webpack.config.js src tools build --color",
"lint:watch": "npm run lint -- --watch",
"clean-dist": "node_modules/.bin/rimraf ./dist && mkdirp ./dist",
"prebuild": "npm-run-all clean-dist lint",
"build": "cross-env NODE_ENV=production babel-node build/build.js && cp public/* dist/",
"start:dist": "cross-env NODE_ENV=production babel-node build/server.js",
"security-check": "nsp check"
},
"nyc": {
"require": [
"babel-register"
],
"include": [
"src/**/*.js"
],
"exclude": [
"src/**/*.spec.js"
],
"reporter": [
"lcov",
"text"
],
"all": true,
"sourceMap": false,
"instrument": false
},
"author": "Dara Carolan",
"license": "MIT",
"dependencies": {
"axios": "0.19.0",
"babel-polyfill": "6.26.0",
"es6-promise": "4.2.8",
"prop-types": "15.7.2"
},
"devDependencies": {
"@babel/cli": "7.7.4",
"@babel/core": "^7.7.4",
"@babel/node": "7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/preset-stage-0": "7.0.0",
"@babel/register": "7.7.4",
"babel-eslint": "10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "5.2.0",
"chai": "4.2.0",
"compression": "1.7.4",
"cross-env": "6.0.3",
"css-loader": "3.2.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.15.1",
"eslint": "6.7.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-react": "7.16.0",
"eslint-watch": "6.0.1",
"eventsource-polyfill": "0.9.6",
"express": "4.17.1",
"file-loader": "5.0.2",
"html-webpack-plugin": "3.2.0",
"image-webpack-loader": "6.0.0",
"istanbul": "0.4.5",
"jsdom": "15.2.1",
"json-loader": "0.5.7",
"mini-css-extract-plugin": "0.8.0",
"mkdirp": "0.5.1",
"mocha": "6.2.2",
"node-sass": "4.13.0",
"npm-run-all": "4.1.5",
"nsp": "3.2.1",
"nyc": "14.1.1",
"open": "7.0.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-router-dom": "5.1.2",
"rimraf": "3.0.0",
"sass-loader": "8.0.0",
"style-loader": "1.0.0",
"uglifyjs-webpack-plugin": "2.2.0",
"url-loader": "3.0.0",
"webpack": "4.41.2",
"webpack-dev-middleware": "3.7.2",
"webpack-hot-middleware": "2.25.0"
},
"repository": {
"type": "git",
"url": "https://github.com/daraclare/react-node-template"
}
}