-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.04 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.04 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
{
"name": "scriptTag",
"version": "1.0.0",
"private": true,
"repository": "git@github.com:devw/script-tag.git",
"author": "Antonio Pierro <antonio.pierro@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest",
"prebuild": "rm -rf docs",
"build": "webpack; mv dist docs; git checkout docs/index.html",
"start": "node src/services/shopifyAPI.js"
},
"dependencies": {
"css-loader": "^4.3.0",
"dotenv": "^8.2.0",
"file-loader": "^6.1.0",
"handlebars": "^4.7.6",
"html-loader": "^1.3.1",
"img-optimize-loader": "^1.0.7",
"sass": "^1.26.11",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1"
},
"devDependencies": {
"@babel/preset-env": "^7.11.5",
"babel-jest": "^26.5.0",
"jest": "^26.5.0",
"js-yaml": "^3.14.0",
"node-fetch": "^2.6.1",
"prompts": "^2.3.2",
"shopify-api-node": "^3.4.4",
"webpack": "^5.0.0-rc.4",
"webpack-cli": "^3.3.12"
}
}