-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1001 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
{
"name": "calculator-app",
"version": "1.0.0",
"description": "![Design preview for the Calculator app coding challenge](./design/desktop-preview.jpg)",
"main": "src/js/main.js",
"scripts": {
"start-tailwind": "npx tailwindcss -i ./src/css/input.css -o ./src/css/output.css --watch",
"start-typescript": "tsc --watch",
"start": "npm run start-typescript & npm run start-tailwind",
"gen-docs": "npx typedoc --out docs src/ts/main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Frontend-Mentor-Projects-Daniel/calculator-app.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Frontend-Mentor-Projects-Daniel/calculator-app/issues"
},
"homepage": "https://github.com/Frontend-Mentor-Projects-Daniel/calculator-app#readme",
"devDependencies": {
"autoprefixer": "^10.4.13",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.3",
"tailwindcss": "^3.2.7"
}
}