forked from scandipwa/scandipwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 4.79 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "scandipwa-base",
"version": "1.0.0",
"private": true,
"author": "Scandiweb [email protected]",
"license": "OSL-3.0",
"engineStrict": true,
"engines": {
"node": "^10"
},
"scripts": {
"watch-core": "webpack-dev-server --config ./src/config/webpack.core.config.js",
"watch": "webpack-dev-server --config ./src/config/webpack.development.config.js",
"watch-sw": "webpack --config ./src/config/webpack.sw.config.js --mode=development --watch",
"build": "npm run build-sw && webpack --config ./src/config/webpack.production.config.js",
"build-sw": "webpack --config ./src/config/webpack.sw.config.js --mode=production",
"test": "jest --env=jsdom --watchAll",
"eslint": "eslint ./src/app --ignore-pattern *.test.*",
"eslint:fix": "npm run eslint -- --fix",
"dev-server": "forever ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --config ./src/config/webpack.development.config.js --progress",
"dev-server-core": "forever ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --config ./src/config/webpack.core.config.js --progress",
"watch-dev-server": "SHELL=/bin/bash chokidar --silent \"src/**/*.js\" \"src/**/*.scss\" -c \"[ '{event}' = 'add' ] || [ '{event}' = 'unlink' ] && forever restartall \"",
"extract-translations": "webpack --config ./src/config/webpack.extract-translations.config.js --progress --hide-module",
"pm2-watch": "./node_modules/.bin/pm2 start process.yml --no-daemon",
"stylelint": "stylelint ./src/**/*.scss",
"stylelint:fix": "npm run stylelint -- --fix"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/src/config/tests.config.js",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/EmptyModule",
"\\.(css|scss|style)$": "<rootDir>/EmptyModule"
}
},
"dependencies": {
"braintree-web-drop-in": "^1.20.4",
"html-react-parser": "^0.6.1",
"ignore-loader": "^0.1.2",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-debounce-render": "^5.0.0",
"react-dom": "^16.6.3",
"react-input-range": "^1.3.0",
"react-redux": "^6.0.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-stripe-elements": "^6.0.1",
"react-vimeo": "^2.0.0",
"react-youtube": "^7.9.0",
"react-zoom-pan-pinch": "^1.5.5",
"rebem-classname": "^0.4.0",
"redux": "^4.0.1",
"unstated": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.2.0",
"autoprefixer": "^9.4.3",
"babel-cli": "^6.26.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-console-source": "^2.0.1",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-rebem-jsx": "^0.3.3",
"babel-plugin-transform-replace-object-assign": "^2.0.0",
"babel-preset-airbnb": "^3.2.0",
"chokidar-cli": "^1.2.2",
"clean-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^4.6.0",
"css-hot-loader": "^1.4.3",
"css-loader": "^2.0.1",
"cssnano": "^4.1.10",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-array-func": "^3.1.3",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"forever": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"pm2": "^3.5.1",
"postcss-cli": "^6.1.0",
"postcss-loader": "^3.0.0",
"redux-devtools": "^3.4.2",
"sass-loader": "^7.1.0",
"sass-resources-loader": "^2.0.0",
"style-loader": "^1.1.3",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-order": "^3.0.1",
"stylelint-scss": "^3.9.4",
"terser": "3.14.1",
"url-loader": "^1.1.2",
"webpack": "^4.6",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-pwa-manifest": "^4.0.0",
"workbox-webpack-plugin": "^3.6.3"
}
}