-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.92 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "mathcenterapp",
"main": "bin/www",
"browserslist": [
"> 1%",
"ie > 9"
],
"scripts": {
"build:production": "webpack --config ./webpack.production.config.js",
"clean": "rimraf dist",
"dev:client": "cross-env NODE_ENV=dev npm run start -- -dev-client",
"dev:server": "npm run build:production && cross-env NODE_ENV=dev nodemon -w ./ -x node --inspect ./bin/www",
"main-storage:migration:create": "sequelize migration:create --name",
"main-storage:migration:run": "sequelize db:migrate",
"main-storage:migration:undo": "sequelize db:migrate:undo",
"postinstall": "npm run clean && npm run build:production && npm run main-storage:migration:run",
"production": "cross-env NODE_ENV=production npm run start",
"start": "node ./bin/www",
"test:unit": "cross-env NODE_ENV=test jest -o --verbose || true",
"test:unit:watch": "cross-env NODE_ENV=test jest -o --verbose --watch || true",
"test:unit:all": "cross-env NODE_ENV=test jest",
"test:integration:all": "npm run build:production && cross-env NODE_ENV=test jest ./test/integration/** --runInBand"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"elm-analyse": "^0.15.0",
"elm-format": "^0.8.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.9.1",
"faker": "^4.1.0",
"jest": "^22.4.2",
"jest-cli": "^22.4.2",
"nodemon": "^1.9.2",
"prettier": "^1.13.5",
"puppeteer": "^1.1.1",
"react-test-renderer": "^15.4.1",
"redux-logger": "^2.6.1",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.2"
},
"dependencies": {
"autoprefixer": "^7.1.1",
"axios": "^0.11.1",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-node5": "^11.1.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.8.0",
"body-parser": "^1.15.1",
"breakpoint-sass": "^2.7.0",
"chalk": "^1.1.3",
"compass-mixins": "^0.12.10",
"compression": "^1.6.2",
"compression-webpack-plugin": "^1.1.11",
"connect-redis": "^3.3.3",
"cross-env": "^5.1.3",
"css-loader": "^0.23.1",
"date-fns": "^1.29.0",
"elm": "^0.19.0-bugfix2",
"elm-webpack-loader": "^5.0.0",
"express": "^4.13.4",
"express-session": "^1.15.6",
"file-loader": "^1.1.11",
"google-libphonenumber": "^3.0.10",
"googleapis": "^9.0.0",
"helmet": "^3.9.0",
"html-webpack-plugin": "^4.0.0-alpha",
"jsonwebtoken": "^7.4.0",
"memory-cache": "^0.1.6",
"mini-css-extract-plugin": "^0.4.0",
"moment": "^2.14.1",
"moment-timezone": "^0.5.4",
"mongoose": "^4.10.5",
"morgan": "^1.7.0",
"node-sass": "^4.9.0",
"passport": "^0.3.2",
"passport-azure-ad-oauth2": "^0.0.4",
"pg": "^4.5.5",
"pg-hstore": "^2.3.2",
"postcss-loader": "^2.0.5",
"ramda": "^0.24.0",
"react": "^16.4.0",
"react-datepicker": "^1.5.0",
"react-dom": "^16.4.0",
"react-mixin": "^3.0.5",
"react-modal": "^3.4.5",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-select": "^1.0.0-beta13",
"react-timer-mixin": "^0.13.3",
"redis": "^2.8.0",
"redux": "^3.5.2",
"redux-form": "^5.2.4",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.1.0",
"rimraf": "^2.5.4",
"sanctuary": "^0.13.1",
"sass-loader": "^7.0.2",
"sequelize": "^3.23.1",
"sequelize-cli": "^3.2.0",
"sequelize-connect": "^1.2.2",
"showdown": "^1.8.6",
"sparkpost": "^2.1.2",
"style-loader": "^0.21.0",
"susy": "^2.2.12",
"timezone-js": "^0.4.13",
"tzdata": "^1.0.11",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.10.2",
"webpack-command": "^0.2.0",
"xss": "^0.3.7"
},
"babel": {
"presets": [
"node5",
"react"
]
},
"engines": {
"node": "6.12.2"
}
}