forked from jordanpapaleo/beerjs-360-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.34 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
106
107
{
"name": "react-redux-node",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node --harmony .",
"dev": "NODE_ENV=development nodemon --ignore ./src/client -x \"node --harmony\" .",
"postinstall": "rm -rf bin; npm run build",
"purge": "rm -rf node_modules; rm -rf bin; npm cache clean; npm i",
"build": "NODE_ENV=production ./node_modules/.bin/webpack --config ./config/webpack.prod.js --progress --colors",
"deploy": "npm test && sh ./config/build-deploy.sh",
"pretest": "npm run test:lint",
"test": "npm run test:unit",
"test:unit": "./node_modules/.bin/jest --verbose",
"test:one": "./node_modules/.bin/jest --watchAll --verbose ./client/reducers/__tests__/userReducer.test.js",
"test:lint": "./node_modules/.bin/eslint . --color",
"test:watch": "./node_modules/.bin/jest --watchAll --verbose"
},
"author": "Jordan Papaleo",
"license": "",
"engines": {
"node": "6.3.1",
"npm": "3.10.7"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"testPathIgnorePatterns": [
"<rootDir>/client/containers",
"<rootDir>/client/components"
],
"moduleNameMapper": {
"^.+\\.(css|less|scss)$": "<rootDir>/tests/StyleStub.js",
"^.+\\.(jpg|png|jpeg|svg)$": "<rootDir>/tests/MediaStub.js"
},
"collectCoverage": true
},
"dependencies": {
"aframe": "^0.5.0",
"axios": "0.14.0",
"babel-core": "6.14.0",
"babel-eslint": "7.0.0",
"babel-loader": "6.2.5",
"babel-plugin-transform-class-properties": "6.11.5",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-polyfill": "6.13.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-1": "6.13.0",
"babel-register": "6.14.0",
"basic-auth": "1.0.4",
"body-parser": "1.15.2",
"classnames": "2.2.5",
"cookie-parser": "1.4.3",
"css-loader": "0.25.0",
"ejs": "2.5.2",
"express": "4.14.0",
"file-loader": "0.9.0",
"gsap": "1.19.0",
"html-loader": "0.4.3",
"html-webpack-plugin": "2.22.0",
"http": "0.0.0",
"json-loader": "0.5.4",
"jwt-decode": "2.1.0",
"less": "2.7.1",
"less-loader": "2.2.3",
"lodash": "4.16.1",
"material-design-lite": "1.3.0",
"moment": "2.17.1",
"morgan": "1.7.0",
"node-fetch": "1.6.3",
"node-sass": "3.9.3",
"nodemailer": "2.7.0",
"normalize-css": "2.3.1",
"raw-loader": "0.5.1",
"react": "15.4.1",
"react-addons-css-transition-group": "15.4.1",
"react-addons-transition-group": "15.4.1",
"react-dom": "15.4.1",
"react-hot-loader": "3.0.0-beta.6",
"react-jss": "5.1.1",
"react-redux": "4.4.5",
"react-router": "2.8.0",
"react-router-redux": "4.0.5",
"redux": "3.6.0",
"redux-devtools": "3.3.1",
"redux-devtools-dock-monitor": "1.1.1",
"redux-devtools-log-monitor": "1.1.1",
"redux-multi": "0.1.12",
"redux-promise": "0.5.3",
"redux-thunk": "2.1.0",
"sass-loader": "4.0.2",
"style-loader": "0.13.1",
"webpack": "1.13.2",
"webpack-dev-middleware": "1.8.4",
"webpack-dev-server": "1.15.1",
"webpack-hot-middleware": "2.13.2"
},
"devDependencies": {
"eslint": "3.12.0",
"eslint-config-standard": "6.0.0",
"eslint-plugin-react": "6.2.0",
"standard": "8.6.0"
}
}