-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.12 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
{
"name": "website-squarespace",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "squarespace assemble && webpack --mode production",
"watch": "squarespace assemble -wT & webpack --watch --mode development",
"server": "squarespace runserver -T",
"authserver": "squarespace runserver --auth",
"start": "squarespace setup && (yarn run watch & yarn run server)",
"start:auth": "squarespace setup && (yarn run watch & yarn run authserver)",
"deploy": "squarespace setup && squarespace deploy",
"build:deploy": "yarn run build && yarn run deploy"
},
"dependencies": {
"@squarespace/core": "^1.1.0",
"tailwindcss": "^1.0.5"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@squarespace/toolbelt": "^0.9.2",
"autoprefixer": "^9.6.1",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"css-loader": "^3.0.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5"
}
}