-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·129 lines (129 loc) · 3.98 KB
/
package.json
File metadata and controls
executable file
·129 lines (129 loc) · 3.98 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "streem-technologies-website",
"version": "13.0.0",
"description": "Streem Technologies website",
"main": "build/server/index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"analyze:client": "babel-node internal/scripts/analyze --client",
"analyze:server": "babel-node internal/scripts/analyze --server",
"build": "babel-node internal/scripts/build --optimize",
"build:dev": "babel-node internal/scripts/build",
"clean": "cross-env babel-node internal/scripts/clean",
"deploy": "babel-node internal/scripts/deploy",
"develop": "cross-env DEPLOYMENT=development babel-node internal/development",
"lint": "eslint client server shared config internal",
"precommit": "lint-staged",
"preinstall": "node internal/scripts/preinstall",
"prepush": "jest",
"start": "cross-env NODE_ENV=production node build/server",
"test": "jest",
"test:coverage": "jest --coverage"
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"git add"
]
},
"jest": {
"collectCoverageFrom": [
"shared/**/*.{js,jsx}"
],
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
],
"testPathIgnorePatterns": [
"<rootDir>/(build|internal|node_modules|flow-typed|public)/"
]
},
"license": "MIT",
"homepage": "https://github.com/ctrlplusb/react-universally#readme",
"dependencies": {
"app-root-dir": "1.0.2",
"body-parser": "^1.17.2",
"colors": "1.1.2",
"compression": "1.7.0",
"cross-env": "5.0.1",
"dotenv": "4.0.0",
"express": "4.15.3",
"express-http-proxy": "^1.0.6",
"helmet": "3.6.1",
"hpp": "0.2.2",
"modernizr": "3.5.0",
"normalize.css": "7.0.0",
"offline-plugin": "4.8.3",
"passport": "^0.3.2",
"passport-custom": "^1.0.5",
"passport-local": "^1.0.0",
"prop-types": "15.5.10",
"react": "15.6.1",
"react-async-bootstrapper": "1.1.1",
"react-async-component": "1.0.0-beta.3",
"react-bootstrap": "^0.31.2",
"react-dom": "15.6.1",
"react-helmet": "5.1.3",
"react-markdown": "^2.5.0",
"react-router-dom": "4.1.2",
"remarkable": "^1.7.1",
"remarkable-loader": "^0.2.1",
"serialize-javascript": "1.4.0",
"uuid": "3.1.0"
},
"devDependencies": {
"assets-webpack-plugin": "3.5.1",
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "7.1.1",
"babel-plugin-transform-react-constant-elements": "6.23.0",
"babel-plugin-transform-react-inline-elements": "6.22.0",
"babel-plugin-transform-react-jsx-self": "6.22.0",
"babel-plugin-transform-react-jsx-source": "6.22.0",
"babel-polyfill": "6.23.0",
"babel-preset-env": "1.6.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-3": "6.24.1",
"babel-template": "6.25.0",
"chokidar": "1.7.0",
"css-loader": "0.28.4",
"enzyme": "2.9.1",
"enzyme-to-json": "1.5.1",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.0.2",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.1.0",
"extract-text-webpack-plugin": "3.0.0",
"file-loader": "0.11.2",
"glob": "7.1.2",
"happypack": "3.0.3",
"html-webpack-plugin": "2.29.0",
"husky": "0.14.3",
"jest": "20.0.4",
"lint-staged": "4.0.2",
"md5": "2.2.1",
"modernizr-loader": "1.0.1",
"node-notifier": "5.1.2",
"prettier": "1.5.3",
"prettier-eslint": "6.4.2",
"prettier-eslint-cli": "4.1.1",
"react-addons-test-utils": "15.6.0",
"react-hot-loader": "3.0.0-beta.6",
"react-test-renderer": "15.6.1",
"regenerator-runtime": "0.10.5",
"rimraf": "2.6.1",
"semver": "5.3.0",
"source-map-support": "0.4.15",
"style-loader": "0.18.2",
"webpack": "3.3.0",
"webpack-bundle-analyzer": "2.8.3",
"webpack-dev-middleware": "1.11.0",
"webpack-hot-middleware": "2.18.2",
"webpack-md5-hash": "0.0.5",
"webpack-node-externals": "1.6.0"
}
}