-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.08 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
{
"name": "base-shopify-theme",
"version": "0.1.0",
"description": "A basic shopify theme with a goal of having build tools that integrate cleanly with preact, sass, and typescript",
"main": "src/scripts/main.js",
"repository": "[email protected]:colindjk/base-shopify-theme.git",
"author": "Colin Kirkpatrick <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rollup -c rollup.config.js",
"watch": "rollup -c rollup.config.js --watch"
},
"dependencies": {
"@babel/core": "^7.11.4",
"@rollup/plugin-node-resolve": "^9.0.0",
"preact": "^10.4.7"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-typescript": "^5.0.2",
"babel-register": "^6.26.0",
"concurrently": "^5.3.0",
"glob": "^7.1.6",
"preact-render-to-string": "^5.1.10",
"rollup": "^2.26.5",
"rollup-plugin-copy-glob": "^0.3.1",
"rollup-plugin-includepaths": "^0.2.4",
"tslib": "^2.0.1",
"typescript": "^4.0.2"
}
}