forked from jgodson/shopify-script-creator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "shopify-script-creator",
"private": true,
"version": "0.23.0",
"description": "Shopify Script Creator",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"prebuild": "rimraf ./docs",
"build": "webpack",
"build:scripts": "node ruby-to-js",
"check:scripts": "node ruby-to-js --check",
"predeploy": "node ruby-to-js --check && yarn run build",
"deploy": "git add ./docs && git commit -m 'Release new version' && git push",
"test:ruby": "bundle exec rspec"
},
"dependencies": {
"@bugsnag/js": "^6.0.0",
"@bugsnag/plugin-react": "^6.0.0",
"@shopify/polaris": "^3.17.0",
"react": "^16.8.6",
"react-beautiful-dnd": "^11.0.4",
"react-dom": "^16.8.6"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.8",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"rimraf": "^2.6.2",
"style-loader": "^0.19.1",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1"
},
"license": "MIT"
}