-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.65 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
{
"name": "book-marc",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "set LOCAL_PORT=3000&&set API_URL=/api&&node dev-server",
"test": "jest",
"test-watch": "jest --watch",
"prod-build": "set NODE_ENV=production&&set API_URL=/api&&webpack --config webpack.prod.config.js",
"heroku-postbuild": "npm run prod-build",
"start-prod": "node prod-app",
"analyze-bundle": "set NODE_ENV=production&&webpack --config webpack.analyze.config.js",
"style-app": "node style-app",
"run-docker": "docker run -p 127.0.0.1:27017:27017 --name bookmarc-mongo -d mongo",
"init-db": "node seed-scripts/initDb.js",
"flow": "flow"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-jest": "^19.0.0",
"babel-register": "^6.22.0",
"css-module-flow": "^1.0.0",
"eslint": "^3.3.1",
"eslint-config-standard": "^6.0.0-beta.3",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-jest": "^20.0.1",
"eslint-plugin-promise": "^3.3.2",
"eslint-plugin-react": "^6.1.2",
"eslint-plugin-standard": "^2.0.0",
"flow-bin": "^0.45.0",
"jest": "^19.0.2",
"nodemon": "^1.10.2",
"open": "0.0.5",
"react-hot-loader": "^3.0.0-beta.1",
"react-test-renderer": "^15.5.4",
"webpack-bundle-analyzer": "^2.3.0",
"webpack-dev-middleware": "^1.10.0",
"webpack-hot-middleware": "^2.16.1"
},
"dependencies": {
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-module-resolver": "^2.7.0",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.11.1",
"bcrypt": "^0.8.7",
"body-parser": "^1.15.2",
"css-loader": "^0.23.1",
"dotenv": "^2.0.0",
"enzyme": "^2.8.2",
"es6-promise": "^3.2.1",
"express": "^4.14.0",
"express-jwt": "^5.1.0",
"jsonwebtoken": "^7.1.9",
"jwt-decode": "^2.1.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"lodash.debounce": "^4.0.8",
"moment": "^2.18.0",
"mongodb": "^2.2.11",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"react-router": "^2.7.0",
"react-router-redux": "^4.0.5",
"recharts": "^0.21.2",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"showdown": "^1.6.4",
"style-loader": "^0.13.1",
"superagent": "^2.2.0",
"superagent-promise-plugin": "^3.2.0",
"webpack": "^2.2.1"
},
"engines": {
"node": "6.11.1"
}
}