forked from saleor/saleor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.99 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
104
105
106
{
"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": ">=10.6.0",
"npm": ">=6.1.0"
},
"dependencies": {
"bootstrap": "4.3.1",
"classnames": "^2.2.6",
"detect-passive-events": "^1.0.4",
"draftjs-to-html": "^0.8.4",
"dropzone": "^5.5.1",
"jquery": "^3.4.1",
"jquery.cookie": "^1.4.1",
"lazysizes": "^4.1.8",
"lodash": "^4.17.14",
"materialize-css": "^0.100.2",
"medium-editor": "^5.23.3",
"mobx": "^3.6.2",
"mobx-react": "^4.4.3",
"popper.js": "^1.15.0",
"prop-types": "^15.7.2",
"qs": "^6.7.0",
"query-string": "^5.1.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"select2": "^4.0.7",
"sortablejs": "^1.9.0",
"svg-injector-2": "^2.0.35"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.5.4",
"autoprefixer": "^8.6.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.0.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-standard": "^3.1.0",
"file-loader": "^1.1.11",
"mini-css-extract-plugin": "^0.4.5",
"mjml": "^4.4.0",
"node-sass": "^4.12.0",
"postcss": "^6.0.23",
"postcss-loader": "^2.1.6",
"regenerator-runtime": "^0.11.1",
"sass-loader": "^7.1.0",
"webpack": "^4.35.3",
"webpack-bundle-tracker": "^0.3.0",
"webpack-cli": "^3.3.6"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
[
"@babel/plugin-proposal-decorators",
{
"decoratorsBeforeExport": true
}
],
"@babel/plugin-proposal-object-rest-spread"
]
},
"metadata": {
"graphql": {
"schema": "./saleor/static/schema.json"
}
},
"scripts": {
"build-assets": "webpack -p",
"build-schema": "python manage.py get_graphql_schema > saleor/graphql/schema.graphql",
"heroku-postbuild": "npm run build-assets && npm run build-emails",
"start": "webpack -d --watch",
"build-emails": "mjml --config.beautify false -l skip \"templates/templated_email/source/*.mjml\" -o templates/templated_email/compiled"
}
}