forked from saleor/saleor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.66 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
{
"name": "saleor",
"version": "0.0.0",
"main": "Gruntfile.js",
"repository": {
"type": "git",
"url": "git://github.com/mirumee/saleor.git"
},
"author": "Mirumee Software",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/mirumee/saleor/issues"
},
"homepage": "http://getsaleor.com/",
"engines": {
"node": "6.x",
"yarn": "0.20.x"
},
"dependencies": {
"bootstrap": "^4.0.0-alpha.6",
"classnames": "^2.2.5",
"dropzone": "^4.2.0",
"favicons-webpack-plugin": "^0.0.7",
"jquery": "^3.1.1",
"jquery-match-height": "^0.7.0",
"jquery-ui": "^1.12.1",
"jquery.cookie": "^1.4.1",
"materialize-css": "^0.97.7",
"mobx": "^3.0.2",
"mobx-react": "^4.1.0",
"modernizr": "^3.2.0",
"query-string": "^4.3.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-inlinesvg": "^0.5.5",
"react-relay": "^0.10.0",
"select2": "^4.0.3",
"sortablejs": "^1.5.0-rc1",
"svg-injector-2": "^2.0.35",
"tether": "^1.4.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"autoprefixer": "^6.7.0",
"babel-core": "^6.22.1",
"babel-es6-polyfill": "^1.1.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-relay-plugin": "^0.10.0",
"babel-relay-plugin-loader": "^0.10.0",
"css-loader": "^0.26.1",
"eslint": "^3.14.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.7.1",
"eslint-plugin-standard": "^2.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"node-sass": "^4.3.0",
"postcss": "^5.2.11",
"postcss-loader": "^1.2.2",
"sass-loader": "^4.1.1",
"webpack": "^1.13.2",
"webpack-bundle-tracker": "0.2.0",
"webpack-dev-server": "^1.16.1"
},
"babel": {
"presets": [
"stage-0",
"es2015",
"react"
],
"plugins": [
"transform-decorators-legacy",
"transform-class-properties",
"transform-object-rest-spread",
"babel-relay-plugin-loader"
]
},
"metadata": {
"graphql": {
"schema": "./saleor/static/schema.json"
}
},
"scripts": {
"build-assets": "node ./node_modules/webpack/bin/webpack.js -p",
"heroku-postbuild": "yarn add --force node-sass && yarn run build-assets",
"start": "UV_THREADPOOL_SIZE=8 node ./node_modules/webpack/bin/webpack.js -d --watch"
}
}