-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 945 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 945 Bytes
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
{
"name": "parent",
"version": "1.0.0",
"description": "The parent, i.e. root folder for Deepsheet",
"author": "Simon Amarasingham",
"repository": "https://github.com/simonrumi/deepsheet",
"license": "ISC",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cd client && npm run start",
"tailwind:css": "tailwind build -i client/src/css/tailwind.src.css -c client/tailwind.config.js -o client/src/css/tailwind.css",
"postinstall": "cd serverLambda && npm install && cd ../client && npm install",
"prebuild": "npm run tailwind:css",
"build": "cd client && npm run build",
"dev": "npm run build && netlify dev"
},
"dependencies": {
"autoprefixer": "^10.4.2",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.13"
},
"devDependencies": {
"concurrently": "^7.0.0",
"netlify-cli": "^10.3.1",
"nodemon": "^2.0.15"
}
}