-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.15 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"scripts": {
"clean": "rimraf -rf .cache dist",
"dev": "parcel src/index.html --no-cache",
"prebuild": "npm run clean",
"build": "parcel build src/index.html --no-cache",
"start": "pm2 start 'npm run dev' --name app",
"restart": "pm2 restart app",
"stop": "pm2 kill",
"logs": "pm2 logs"
},
"name": "preact-hooks-typescript-app",
"version": "1.0.0",
"main": "./src/app.js",
"keywords": [
"ts",
"pm2",
"preact",
"parcel",
"typescript",
"parcel-bundler"
],
"author": "Maksim Kostromin <[email protected]> (https://github.com/daggerok)",
"license": "MIT",
"description": "Preact Hooks TypeScript App",
"devDependencies": {
"@babel/core": "7.8.7",
"@types/node": "13.9.2",
"babel-preset-preact": "2.0.0",
"parcel-bundler": "1.12.4",
"parcel-plugin-static-files-copy": "2.3.1",
"pm2": "4.2.3",
"rimraf": "3.0.2",
"sass": "1.26.3",
"scss": "0.2.4",
"typescript": "3.8.3"
},
"dependencies": {
"preact": "10.3.4"
},
"staticFiles": {
"staticPath": "./src/public",
"watcherGlob": "**"
},
"babel": {
"presets": [
"preact"
]
}
}