-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·79 lines (79 loc) · 2.47 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
{
"name": "bulletjournal",
"version": "1.0.0",
"description": "bulletjournal",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --hot --progress --colors --inline --open",
"start": "grunt | node server/server.js",
"dev-start": "npm run build | nodemon server/server.js",
"dev-build": "webpack --watch --progress --colors",
"build": "webpack -p --progress --colors",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --require babel-polyfill --require ./test/helpers.js --require ./test/dom.js --require ignore-styles test/*-test.js -R nyan"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/whitzhu/bulletjournal.git"
},
"author": "whitney zhu",
"license": "ISC",
"bugs": {
"url": "https://github.com/whitzhu/bulletjournal/issues"
},
"homepage": "https://github.com/whitzhu/bulletjournal#readme",
"dependencies": {
"axios": "^0.16.2",
"babel-polyfill": "^6.23.0",
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"lodash": "^4.17.4",
"mongoose": "^4.10.6",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "^3.0.0-beta.7",
"react-redux": "^5.0.5",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"serve-favicon": "^2.4.3"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.6",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.0.2",
"css-loader": "^0.28.4",
"cssnano": "^3.10.0",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.2",
"grunt": "^1.0.1",
"grunt-contrib-uglify": "^3.0.1",
"grunt-postcss": "^0.8.0",
"ignore-styles": "^5.0.1",
"jsdom": "^11.0.0",
"mocha": "^3.4.2",
"node-sass": "^4.5.3",
"pixrem": "^3.0.2",
"react-test-renderer": "^15.5.4",
"redux-logger": "^3.0.6",
"riek": "^1.1.0",
"sass-loader": "^6.0.5",
"sinon": "^2.3.2",
"style-loader": "^0.18.2",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
}
}