-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.68 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.68 KB
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
{
"name": "poke-react",
"version": "0.0.2",
"description": "Pokedex with React !",
"main": "server.js",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config.prod.js -p",
"start": "node index.js",
"watch": "concurrently --kill-others \"npm run client\" \"npm run server\"",
"server": "nodemon index.js",
"client": "webpack --watch",
"lint": "eslint --cache --ext .js,.jsx .",
"test-client": "NODE_ENV=test karma start ./karma.conf.js --singleRun true --autoWatch false --reporters spec",
"test-client-watch": "NODE_ENV=test karma start ./karma.conf.js --singleRun false --autoWatch true --reporters spec",
"test-server": "mocha --opts ./mocha.opts server/**/*.serverSpec.js",
"test-server-watch": "mocha --watch --opts ./mocha.opts 'server/**/*.serverSpec.js'",
"test-integration": "mocha --timeout 5000 'server/**/*.integrationSpec.js'",
"test": "npm run test-client && npm run test-server && npm run test-integration",
"posttest": "npm run lint"
},
"engineStrict": true,
"engines": {
"node": "6.3.1",
"npm": "3.10.3"
},
"dependencies": {
"bluebird": "3.4.1",
"config": "1.24.0",
"express": "4.14.0",
"express-graphql": "0.5.3",
"graphql": "0.6.2",
"html-webpack-plugin": "2.28.0",
"lodash.get": "4.4.1",
"radium": "0.18.1",
"react": "15.3.0",
"react-dom": "15.3.0",
"redis": "2.6.2",
"request": "2.81.0",
"request-promise": "4.1.0",
"superagent": "2.1.0",
"urijs": "1.18.2",
"webpack": "2.2.1"
},
"devDependencies": {
"babel-eslint": "6.1.2",
"babel-loader": "6.2.4",
"babel-plugin-syntax-decorators": "6.13.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.11.1",
"babel-register": "6.14.0",
"babelify": "7.3.0",
"browserify": "13.1.0",
"chai": "3.5.0",
"clean-webpack-plugin": "0.1.14",
"concurrently": "3.1.0",
"copy-webpack-plugin": "4.0.1",
"enzyme": "2.4.1",
"eslint": "3.3.1",
"eslint-config-airbnb": "10.0.1",
"eslint-config-airbnb-base": "5.0.2",
"eslint-plugin-import": "1.13.0",
"eslint-plugin-jsx-a11y": "2.1.0",
"eslint-plugin-react": "6.1.1",
"karma": "1.2.0",
"karma-browserify": "5.1.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "1.0.1",
"karma-cli": "1.0.1",
"karma-mocha": "1.1.1",
"karma-nyan-reporter": "0.2.4",
"karma-phantomjs-launcher": "1.0.1",
"karma-phantomjs-shim": "1.4.0",
"karma-spec-reporter": "0.0.26",
"mocha": "3.0.2",
"nodemon": "1.11.0",
"react-addons-test-utils": "15.3.0",
"react-hot-loader": "1.3.0",
"sinon": "1.17.5",
"sinon-chai": "2.8.0",
"watchify": "3.7.0"
}
}