This repository was archived by the owner on Feb 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.12 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.12 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
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
106
{
"name": "strv-dev-meetup",
"description": "STRV Dev Meetup",
"author": "STRV",
"license": "MIT",
"version": "0.0.1",
"keywords": [],
"scripts": {
"build": "webpack --verbose --colors --display-error-details --config webpack/prod.config.js",
"dev": "concurrent --kill-others \"npm run watch-client\" \"npm run start-dev\"",
"lint": "eslint -c .eslintrc src",
"postinstall": "npm run build",
"start": "better-npm-run start-prod",
"start-dev": "better-npm-run start-dev",
"watch-client": "better-npm-run watch-client"
},
"betterScripts": {
"start-prod": {
"command": "node ./bin/server.js",
"env": {
"NODE_PATH": "./src",
"NODE_ENV": "production"
}
},
"start-dev": {
"command": "node ./bin/server.js",
"env": {
"NODE_PATH": "./src",
"NODE_ENV": "development",
"PORT": 3000
}
},
"watch-client": {
"command": "node webpack/webpack-dev-server.js",
"env": {
"UV_THREADPOOL_SIZE": 100,
"NODE_PATH": "./src"
}
}
},
"dependencies": {
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-display-name": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"babel-runtime": "^6.9.0",
"express": "^4.13.4",
"piping": "^0.3.2",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-helmet": "^3.1.0",
"react-router": "2.4.1",
"react-router-redux": "^4.0.5",
"redux-connect": "^2.4.0",
"serialize-javascript": "^1.3.0",
"superagent": "^1.8.3",
"url-loader": "^0.5.7",
"webpack-isomorphic-tools": "^2.3.0"
},
"devDependencies": {
"@strv/eslint-config-javascript": "^4.2.0",
"autoprefixer": "^6.3.6",
"babel-eslint": "^6.0.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-typecheck": "^3.9.0",
"babel-preset-react-optimize": "^1.0.1",
"better-npm-run": "0.0.8",
"clean-webpack-plugin": "^0.1.9",
"concurrently": "^2.1.0",
"css-loader": "^0.23.1",
"eslint": "^2.10.2",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^5.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"happypack": "^2.1.1",
"ip": "^1.1.3",
"json-loader": "^0.5.4",
"postcss-loader": "^0.9.1",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.5",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.0.11",
"strip-loader": "^0.1.2",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.1.0",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"engines": {
"node": "^4.2.1",
"npm": "^3.5.3"
}
}