forked from yankouskia/Shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.77 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
{
"name": "Shop",
"version": "0.0.6",
"description": "Shop",
"main": "index.html",
"scripts": {
"start": "node ./webpack.js",
"build": "./node_modules/.bin/webpack --config ./webpack/webpack.config.js",
"add-db": "node ./init_db.js",
"clean": "rm -r ./client/build",
"test-client": "mocha --timeout 10000 --require=\"mocha_settings/client-inject.js\" --compilers js:babel-core/register \"src/client/**/__tests__/**/*.spec.js\"",
"test-server": "mocha --timeout 10000 --require=\"mocha_settings/server-inject.js\" --compilers js:babel-core/register \"src/server/**/__tests__/**/*.spec.js\"",
"test": "npm run test-client && npm run test-server"
},
"repository": {
"type": "git",
"url": "https://github.com/yankouskia/shop"
},
"author": "yankouskia",
"license": "ISC",
"devDependencies": {
"babel-core": "6.10.4",
"babel-eslint": "3.0.1",
"babel-loader": "6.2.3",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "6.5.2",
"babel-polyfill": "6.5.0",
"babel-preset-es2015": "6.5.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"babel-runtime": "6.5.0",
"bluebird": "3.3.4",
"chai": "3.5.0",
"chai-subset": "1.2.1",
"classnames": "2.2.3",
"css-loader": "0.15.4",
"ejs": "2.3.4",
"eslint": "0.22.0",
"eslint-plugin-react": "2.2.0",
"express": "4.13.1",
"extract-text-webpack-plugin": "0.8.2",
"file-loader": "0.8.4",
"history": "2.0.0-rc2",
"html-loader": "0.4.3",
"immutable": "3.7.4",
"json-loader": "0.5.2",
"json5": "0.4.0",
"json5-loader": "0.6.0",
"lodash": "4.6.1",
"mocha": "2.4.5",
"mongoose-timestamp": "0.5.0",
"node-libs-browser": "0.5.2",
"node-sass": "3.10.0",
"node-watch": "0.3.5",
"nskeymirror": "0.1.2",
"opener": "1.4.1",
"react": "0.14.7",
"react-dnd": "2.0.2",
"react-loading-order-with-animation": "1.0.0",
"react-dnd-html5-backend": "2.1.2",
"react-document-meta": "2.0.0-rc2",
"react-dom": "0.14.7",
"react-redux": "4.0.6",
"redux": "3.1.4",
"redux-form": "4.1.5",
"redux-logger": "2.4.0",
"react-router": "2.0.0-rc5",
"redux-thunk": "0.1.0",
"reselect": "2.2.1",
"sass-loader": "1.0.2",
"sinon-chai": "2.8.0",
"style-loader": "0.12.3",
"superagent": "1.8.1",
"url-loader": "0.5.6",
"webpack": "1.10.1"
},
"dependencies": {
"async": "1.5.0",
"body-parser": "1.14.1",
"bootstrap": "3.3.6",
"bootstrap-sass": "3.3.6",
"express-graphql": "^0.5.4",
"graphql": "^0.7.2",
"helmet": "0.14.0",
"hpp": "0.2.0",
"material-ui": "0.14.0",
"mongoose": "4.4.8",
"nconf": "0.8.2",
"react-bootstrap": "0.28.3",
"webpack-dev-server": "1.12.1"
}
}