-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
105 lines (105 loc) · 4.12 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
96
97
98
99
100
101
102
103
104
105
{
"name": "boilerplate.react.spa.full-server",
"description": "A boilerplate for creating a SPA in React, with a full server",
"version": "1.0.0",
"config": {
"SERVER_PORT": 3000
},
"scripts": {
"build:babelrc": "node ./.babel/conf.babel.js",
"build:bundle": "yarn build:babelrc && cross-env PUBLIC_URL=\"/\" BABEL_ENV=\"production\" NODE_ENV=\"production\" node .bin/build",
"build:bundle:dev": "yarn build:babelrc && cross-env PUBLIC_URL=\"/\" BABEL_ENV=\"development\" NODE_ENV=\"development\" node .bin/build",
"build:private": "yarn build:babelrc && echo 'Compiling to CommonJS' && cross-env NODE_ENV=\"server\" babel ./src -d ./dist/private",
"build:private:watch": "yarn build:private --watch --skip-initial-build",
"lint": "eslint ./**/*.js",
"start:server": "node .bin/prepDist && yarn build:bundle && yarn build:private && node ./dist/private/server init",
"start:server:dev": "node .bin/prepDist && yarn build:private && concurrently --kill-others -p {name} -n WEBPACK,BABEL,SERVER -c black.bgCyan,black.bgGreen,black.bgMagenta \"yarn build:bundle:dev\" \"yarn build:private:watch\" \"yarn start:server:watch\"",
"start:server:watch": "node ./conf.nodemon.js && cross-env NODE_ENV=\"development\" nodemon --config ./nodemon.json --inspect ./dist/private/server init",
"test": "yarn lint && yarn unit",
"unit": "yarn build:babelrc && cross-env BABEL_ENV=\"test\" NODE_ENV=\"test\" jest --env=jsdom --config ./.jest/conf.jest.js",
"unit:watch": "yarn unit --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the0neWhoKnocks/boilerplate.react.spa.full-server.git"
},
"homepage": "https://github.com/the0neWhoKnocks/boilerplate.react.spa.full-server#readme",
"author": "Trevor Lemon",
"license": "MIT",
"dependencies": {
"@noxx/react-image-loader": "1.1.1",
"@noxx/webpack-tidy-plugin": "^2.0.2",
"axios": "^0.17.0",
"babel-cli": "^6.26.0",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "7.1.1",
"babel-preset-react-app": "^3.0.3",
"babel-runtime": "6.26.0",
"body-parser": "^1.18.3",
"case-sensitive-paths-webpack-plugin": "2.1.1",
"classnames": "^2.2.6",
"cli-table2": "^0.2.0",
"colors": "^1.3.0",
"compression": "^1.7.2",
"concurrently": "^3.6.0",
"cookie-parser": "^1.4.3",
"cpy-cli": "^2.0.0",
"cross-conf-env": "^1.1.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.1",
"eslint-config-react-app": "^2.0.1",
"eslint-loader": "1.9.0",
"eslint-plugin-flowtype": "2.35.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "^7.1.0",
"express": "^4.16.3",
"extend": "^3.0.1",
"file-loader": "0.11.2",
"fs-extra": "^6.0.1",
"glamor": "^2.20.40",
"glob": "^7.1.3",
"jest": "20.0.4",
"object-assign": "4.1.1",
"portscanner": "^2.2.0",
"promise": "8.0.1",
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-dev-utils": "^4.1.0",
"react-dom": "^16.4.0",
"react-loadable": "^5.5.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-waypoint": "^8.0.2",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"serialize-javascript": "^1.5.0",
"simple-progress-webpack-plugin": "^1.1.2",
"sw-precache-webpack-plugin": "0.11.4",
"url-loader": "0.5.9",
"webpack": "^3.11.0",
"webpack-assets-manifest": "^1.0.0",
"webpack-dev-server": "2.8.2"
},
"devDependencies": {
"@noxx/eslint-config": "^1.0.5",
"babel-plugin-dynamic-import-node": "^2.0.0",
"babel-plugin-import-inspector": "^2.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-define": "^1.3.0",
"babel-plugin-webpack-alias": "^2.1.2",
"browser-sync": "^2.24.4",
"compression-webpack-plugin": "^1.0.1",
"cross-env": "^5.1.1",
"find-up": "^3.0.0",
"import-inspector": "^2.0.0",
"jest-skipped-reporter": "^0.0.4",
"lodash.some": "^4.6.0",
"lodash.template": "^4.4.0",
"nodemon": "^1.17.5",
"reload": "^2.3.0"
}
}