-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.07 KB
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-plugins",
"version": "0.1.6",
"description": "Add features to your Shopify storefront and checkout with lightweight and easily integrateable plugins.",
"main": "src/loader.js",
"scripts": {
"precommit": "npm test",
"test": "eslint src",
"build": "webpack -p",
"dev": "NODE_ENV=development webpack-dev-server"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"css-loader": "^1.0.0",
"cssnano": "^4.0.4",
"eslint": "^5.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"postcss-loader": "^2.1.6",
"prettier": "^1.14.0",
"webpack": "^4.16.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"author": "Sebastian Misch - Nerds of all Trades GmbH",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:nerdsofalltrades/shopify-plugins.git"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"tabWidth": 2
},
"dependencies": {}
}