forked from ProfAvery/cpsc349-project3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 831 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
29
30
{
"name": "cpsc349-project3",
"description": "CPSC 349 - Summer 2021 - Project 3",
"version": "1.0.0",
"scripts": {
"test": "npx standard",
"start": "npx npm-run-all --parallel tailwind browsersync",
"tailwind": "npx tailwindcss --input src/tailwind.css --output docs/styles/tailwind.css --watch",
"browsersync": "npx browser-sync start --server docs/ --files \"docs/**/*\""
},
"standard": {
"ignore": [
"tailwind.config.js"
]
},
"author": "Kenytt Avery",
"repository": {
"type": "git",
"url": "git+https://github.com/ProfAvery/cpsc349-project3.git"
},
"devDependencies": {
"autoprefixer": "^10.3.1",
"browser-sync": "^2.27.4",
"npm-run-all": "^4.1.5",
"standard": "^16.0.3",
"tailwindcss": "^2.2.4"
},
"keywords": [],
"license": "UNLICENSED"
}