-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.84 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
{
"name": "create-markdown-notes",
"version": "1.0.0",
"main": "index.js",
"author": "Eric Liu",
"license": "MIT",
"scripts": {
"build:dev": "webpack",
"build:prod": "webpack -p --env PROD",
"dev-server": "webpack-dev-server",
"start": "concurrently --kill-others-on-fail \"node server/server.js\" \"open http://localhost:5000\"",
"server": "nodemon server/server.js",
"dev": "concurrently --kill-others-on-fail \"webpack --watch\" \"yarn run server\""
},
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.3",
"express-session": "^1.15.6",
"file-saver": "^1.3.8",
"jquery": "^3.3.1",
"lodash": "^4.17.5",
"markdown-pdf": "^9.0.0",
"marked": "^0.3.18",
"mathjax": "^2.7.3",
"moment": "2.18.1",
"node-sass": "4.5.3",
"numeral": "2.0.6",
"react": "15.6.1",
"react-addons-shallow-compare": "15.6.0",
"react-dom": "15.6.1",
"react-redux": "5.0.5",
"react-router-dom": "4.2.2",
"react-spinners": "^0.2.6",
"redux": "3.7.2",
"request": "2.83.0",
"uuid": "3.2.1",
"webpack": "3.1.0",
"webpack-dev-server": "2.5.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "6.25.0",
"babel-loader": "7.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.5.1",
"css-loader": "0.28.4",
"eslint": "^4.5.0",
"expect": "^1.20.2",
"extract-text-webpack-plugin": "3.0.0",
"gulp": "^3.9.1",
"gulp-uglify": "^3.0.0",
"live-server": "1.2.0",
"mocha": "^3.5.0",
"nodemon": "^1.11.0",
"pump": "^1.0.2",
"sass-loader": "6.0.6",
"style-loader": "0.18.2",
"supertest": "^3.0.0"
}
}