-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (103 loc) · 3.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "cheeriotest",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server",
"serve": "node server.dev",
"flow": "./node_modules/.bin/nodemon --watch ./app --exec 'flow; test $? -eq 0 -o $? -eq 2'",
"postinstall": "./node_modules/.bin/webpack --config ./webpack/prod.config.js --progress --colors",
"test:karma": "./node_modules/.bin/karma start",
"test": "./node_modules/.bin/nodemon --ext spec.js --watch ./app --watch ./test --exec 'NODE_ENV=test ./node_modules/.bin/mocha $(find app -name '*.spec.js') --recursive --compilers js:babel-register --require ./test/config.js'",
"test:api": "./node_modules/.bin/nodemon --ext spec.js --watch ./api --watch ./test --exec 'NODE_ENV=test ./node_modules/.bin/mocha $(find api -name '*.spec.js') --recursive --compilers js:babel-register --require ./test/config.js'",
"lint": "./node_modules/.bin/eslint -c .eslintrc app/",
"lint:watch": "./node_modules/.bin/nodemon --watch ./app --exec 'npm run lint'"
},
"dependencies": {
"cheerio": "^0.22.0",
"font-awesome": "^4.6.3",
"json-loader": "^0.5.4",
"mongoose": "^4.6.1",
"nodemon": "^1.10.2",
"react": "^15.3.1",
"react-ace": "^3.5.0",
"react-codemirror": "^0.2.6",
"react-css-modules": "^3.7.10",
"react-dom": "^15.3.1",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.4.5",
"react-router": "^2.7.0",
"react-router-redux": "^4.0.5",
"redux": "^3.6.0",
"redux-catch-promise": "^1.0.3",
"redux-localstorage": "^0.4.1",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0",
"uuid": "^2.0.2",
"winston": "^2.2.0"
},
"devDependencies": {
"autoprefixer": "^6.4.1",
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-react-hot": "^1.0.4",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"css-loader": "^0.25.0",
"css-modules-require-hook": "^4.0.2",
"enzyme": "^2.4.1",
"eslint": "^3.6.0",
"eslint-config-airbnb": "^11.2.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flowtype": "^2.19.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"file-loader": "^0.9.0",
"flow-bin": "^0.32.0",
"ignore-styles": "^5.0.1",
"install": "^0.8.1",
"jsdom": "^9.5.0",
"json-loader": "^0.5.4",
"jsx-loader": "^0.13.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"localStorage": "^1.0.3",
"mocha": "^3.0.2",
"node-sass": "^3.9.3",
"nodemon": "^1.10.2",
"npm": "^3.10.8",
"postcss-css-variables": "^0.5.2",
"postcss-loader": "^0.13.0",
"precss": "^1.4.0",
"react-addons-test-utils": "^15.3.1",
"react-hot-loader": "^3.0.0-beta.3",
"resolve-url": "^0.2.1",
"sass-loader": "^4.0.2",
"sinon": "^1.17.5",
"style-loader": "^0.13.1",
"supertest": "^2.0.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.1",
"webpack-hot-middleware": "^2.12.2"
},
"author": "",
"license": "ISC"
}