-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1007 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
31
32
33
34
35
36
{
"name": "sakarin-html5-villapaitapeli",
"version": "1.0.0",
"main": "src/index.html",
"license": "MIT",
"repository": {
"url": "https://github.com/eioo/sakarin-html5-villapaitapeli"
},
"homepage": "https://eioo.github.io/sakarin-html5-villapaitapeli",
"scripts": {
"build": "parcel build --no-source-maps --experimental-scope-hoisting --public-url https://eioo.github.io/sakarin-html5-villapaitapeli/ src/index.html",
"dev": "parcel src/index.html",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"start": "npm run dev"
},
"devDependencies": {
"@types/node": "^13.7.7",
"gh-pages": "^2.2.0",
"tslint-config-prettier": "^1.17.0"
},
"dependencies": {
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.3.1",
"sass": "^1.26.2",
"typescript": "^3.8.3"
},
"staticFiles": {
"staticPath": [
{
"staticPath": "assets/sounds",
"staticOutDir": "assets/sounds"
}
]
}
}