forked from Squarespace/base-template-npm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 855 Bytes
/
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
{
"name": "npm-base-template",
"version": "1.0.0",
"description": "Squarespace Base Template using NPM",
"author": "Squarespace, Inc.",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "squarespace assemble && webpack --display-modules",
"watch": "squarespace assemble --watch & webpack --watch --hide-modules",
"server": "squarespace runserver",
"authserver": "squarespace runserver --auth",
"start": "squarespace setup && (npm run watch & npm run server)",
"deploy": "squarespace setup && squarespace deploy"
},
"repository": {
"type": "git",
"url": "ssh://git@github.com:squarespace/base-template-npm.git"
},
"dependencies": {
"@squarespace/core": "^0.1.5"
},
"devDependencies": {
"@squarespace/toolbelt": "^0.7.5",
"dotenv": "^2.0.0",
"webpack": "^1.12.9"
}
}