-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "css-grid",
"version": "1.0.1",
"description": "CSS Grid playground",
"main": "index.js",
"devDependencies": {
"forever": "2.0.0",
"ncp": "2.0.0",
"npm-run-all": "4.1.5",
"parcel-bundler": "1.12.4",
"pm2": "4.2.3",
"serve": "11.3.0"
},
"scripts": {
"predeploy": "npm-run-all predeploy:*",
"predeploy:build": "npm run build -- --public-url='/css-grid/'",
"predeploy:404": "ncp dist/index.html dist/404.html",
"predeploy:nojekyll": "ncp dist/index.html dist/.nojekyll",
"start": "parcel --no-cache -p 5000 src/index.html",
"build": "parcel build --no-cache src/index.html",
"serve": "serve dist",
"forever": "forever start ./node_modules/.bin/serve dist",
"forever:logs": "forever -f logs 0",
"forever:stop": "forever stopall --killTree",
"pm2": "pm2 start 'npm start' --name app",
"restart": "pm2 restart app",
"stop": "pm2 kill",
"logs": "pm2 logs"
},
"keywords": [
"css",
"grid",
"serve",
"npm-run-all"
],
"author": "Maksim Kostromin aka daggerok",
"license": "MIT"
}