-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
46 lines (46 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
{
"name": "judo-heroes-2",
"version": "1.0.0",
"description": "A React application to showcase rendering with Universal JavaScript",
"main": "server.js",
"scripts": {
"test:lint": "eslint src/",
"test": "npm run test:lint",
"start": "npm run build && node src/server-es5.js",
"start:universal": "export UNIVERSAL=true && npm run start",
"start:dev": "export NODE_ENV=development && nodemon src/server.js",
"start:dev:universal": "export NODE_ENV=development && export UNIVERSAL=true && npm run start:dev",
"build": "NODE_ENV=production webpack -p --profile --display-modules --optimize-minimize",
"build:dev": "webpack -d",
"build:dev:watch": "webpack -d --watch",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"author": "Luciano Mammino",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"ejs": "^2.5.2",
"express": "5.0.0-alpha.5",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router-dom": "^4.1.2",
"snyk": "^1.41.1"
},
"devDependencies": {
"babel-loader": "^7.1.1",
"babel-register": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"nodemon": "^1.11.0",
"webpack": "^3.0.0",
"webpack-node-externals": "^1.6.0"
},
"snyk": true
}