-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "@bigcommerce/checkout-sdk-example",
"version": "0.1.0",
"description": "BigCommerce Checkout JavaScript SDK Example",
"license": "MIT",
"private": true,
"main": "dist/main.js",
"files": [
"dist/"
],
"engines": {
"node": "^6.10.0"
},
"repository": {
"type": "git",
"url": "git://github.com/bigcommerce/checkout-sdk-js-example.git"
},
"author": "BigCommerce",
"bugs": {
"url": "https://github.com/bigcommerce/checkout-sdk-js-example/issues"
},
"homepage": "https://github.com/bigcommerce/checkout-sdk-js-example",
"scripts": {
"dev": "webpack --mode development --watch",
"build": "webpack --mode production"
},
"devDependencies": {
"@bigcommerce/checkout-sdk": "^1.0.0",
"accounting": "^0.4.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"classnames": "^2.2.5",
"css-loader": "^0.28.11",
"lodash": "^4.17.10",
"node-sass": "^4.9.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-text-mask": "^5.4.2",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"webpack": "^4.12.1",
"webpack-cli": "^2.1.3"
}
}