This repository has been archived by the owner on Apr 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
126 lines (126 loc) · 3.97 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
{
"name": "doppler-for-shopify",
"version": "1.0.0-rc1",
"private": true,
"scripts": {
"prod": "yarn run clean && yarn run build && cross-env NODE_ENV=production yarn run start-prod",
"dev": "cross-env NODE_ENV=development yarn run start",
"start-prod": "pm2 start ./bin/www.js",
"start": "nodemon ./bin/www",
"build": "cross-env NODE_ENV=production webpack --config ./config/webpack.config.js --progress --profile --colors",
"clean": "rm -rf ./assets && mkdir ./assets",
"pretty": "prettier --single-quote --trailing-comma es5 --write {client,bin,config,server}{/*,/**/*}.js",
"precommit": "yarn run pretty",
"test": "npm run test-unit",
"test-unit": "cross-env NODE_ENV=test nyc --reporter=text mocha --require co-mocha './server/**/*.spec.js'"
},
"engines": {
"node": ">= 10.22.0"
},
"browsers": [
"last 3 chrome versions",
"last 3 firefox versions",
"last 2 versions",
"safari >= 8",
"ios >= 8",
"ie >= 11",
"explorermobile >= 11",
"android >= 4.4"
],
"notes": [
{
"@shopify/shopify-express": "1.0.0-alpha.7",
"note": "^1.0.0 fails on build",
"diff": "https://github.com/Shopify/shopify-express/compare/v1.0.0-alpha.7...v1.0.0-alpha.8"
},
{
"css-loader": "^1.0.1",
"note": "^3.0.0, ^2.1.1 fails on build",
"error": "Module build failed: TypeError: Path must be a string. Received undefined..."
},
{
"react-router": "^3.2.3",
"note": "^4.0.8 fails on manual testing",
"error": "Minified exception occurred"
},
{
"style-loader": "~0.22.0",
"note": "0.23.0 fails on build"
},
{
"connect-redis": "^3.4.2",
"note": "5.0.0 pass the tests but fails after deployment"
},
{
"resolutions": "@shopify/[email protected] depends on [email protected] but it is not supported by node >= 10, so, I forced a version in resolutions property",
"[email protected]": "By the moment, it is not working on Linux with Node 12 without Python, probably because there is no a sqlite binary available"
}
],
"dependencies": {
"@shopify/polaris": "^2.12.1",
"@shopify/shopify-express": "1.0.0-alpha.7",
"autoprefixer": "^9.8.6",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chalk": "^4.1.0",
"connect-redis": "^3.4.2",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"css-loader": "^1.0.1",
"debug": "^4.2.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"file-loader": "^6.1.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.8",
"morgan": "^1.10.0",
"nodemon": "^2.0.6",
"proxyquire": "^2.1.3",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-hot-loader": "^4.13.0",
"react-object-inspector": "^0.2.1",
"react-redux": "^7.2.2",
"react-responsive-modal": "^4.0.1",
"react-router": "^3.2.6",
"react-router-redux": "^4.0.8",
"redis": "^2.8.0",
"redux": "^4.0.5",
"redux-immutable-state-invariant": "^2.1.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"shopify-api-node": "^3.5.1",
"style-loader": "~0.23.1",
"url": "^0.11.0",
"webpack": "^2.7.0",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.11.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-middleware": "^1.5.1"
},
"devDependencies": {
"chai": "^4.2.0",
"co-mocha": "^1.2.2",
"eslint": "^7.25.0",
"eslint-plugin-prettier": "^3.4.0",
"global": "^4.4.0",
"mocha": "^5.2.0",
"node-mocks-http": "^1.9.0",
"nyc": "^15.1.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.2.0",
"sinon": "^9.2.1",
"sinon-chai": "^3.5.0",
"sinon-express-mock": "^2.2.1",
"supertest": "^6.0.1"
},
"resolutions": {
"@shopify/shopify-express/sqlite3": "^4.2.0"
}
}