forked from saleor/saleor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.34 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
{
"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": "^8.7.0",
"npm": "^5.4.2"
},
"dependencies": {
"bootstrap": "4.0.0-beta",
"classnames": "^2.2.5",
"dropzone": "^5.1.1",
"favicons-webpack-plugin": "^0.0.7",
"jquery": "^3.1.1",
"jquery.cookie": "^1.4.1",
"materialize-css": "^0.100.2",
"mobx": "^3.0.2",
"mobx-react": "^4.1.0",
"popper.js": "^1.12.5",
"query-string": "^5.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"select2": "^4.0.3",
"sortablejs": "^1.5.0-rc1",
"svg-injector-2": "^2.0.35"
},
"devDependencies": {
"autoprefixer": "^7.1.4",
"babel-core": "^6.22.1",
"babel-es6-polyfill": "^1.1.0",
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"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",
"css-loader": "^0.28.7",
"eslint": "^4.6.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"node-sass": "^4.3.0",
"postcss": "^6.0.11",
"postcss-loader": "^2.0.6",
"sass-loader": "^6.0.6",
"webpack": "^3.5.6",
"webpack-bundle-tracker": "0.2.0",
"webpack-dev-server": "^2.7.1"
},
"babel": {
"presets": [
"stage-0",
"es2015",
"react"
],
"plugins": [
"transform-decorators-legacy",
"transform-class-properties",
"transform-object-rest-spread"
]
},
"metadata": {
"graphql": {
"schema": "./saleor/static/schema.json"
}
},
"scripts": {
"build-assets": "node ./node_modules/webpack/bin/webpack.js -p",
"heroku-postbuild": "npm run build-assets",
"start": "UV_THREADPOOL_SIZE=8 node ./node_modules/webpack/bin/webpack.js -d --watch"
}
}