-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.57 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
{
"name": "ji-kids-bytes",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run clean && npm-run-all -p _media-server _css-watch",
"build": "npm run clean && npm run _css-bundle-prod",
"clean": "rimraf ./public/css",
"generate-sync": "npm run _manifest-generator && npm run _media-sync",
"_manifest-generator": "cd build-utils/manifest-generator && cargo run",
"_media-sync": "node ./build-utils/media-server-sync.js --hard",
"_css-watch": "npm-run-all -p _css-watch-player _css-watch-home",
"_css-bundle-prod": "npm-run-all -p _css-bundle-prod-player _css-bundle-prod-home",
"_css-watch-player": "postcss markup/css/player.css --env development -o public/css/player.css --watch",
"_css-bundle-prod-player": "postcss markup/css/player.css --env production -o public/css/player.css",
"_css-watch-home": "postcss markup/css/home.css --env development -o public/css/home.css --watch",
"_css-bundle-prod-home": "postcss markup/css/home.css --env production -o public/css/home.css",
"_media-server": "node ./build-utils/local-media-server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"express": "^4.17.1",
"serve-index": "^1.9.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0"
},
"dependencies": {
"cssnano": "^4.1.10",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.1",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.2.1",
"postcss-url": "^8.0.0",
"restyle-loader": "0.0.3",
"rimraf": "^3.0.2",
"tailwindcss": "^1.4.6"
}
}