pixel-editor/package.json

40 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2019-03-27 02:20:54 +03:00
{
"name": "pixel-editor",
"version": "1.0.0",
"description": "Online pixel art creation tool",
"main": "build.js",
"scripts": {
"build": "node ./build.js ./build",
2022-03-13 19:56:35 +03:00
"serve": "node ./server.js ./build 3000",
"test": "npm run build && npm run serve",
2022-03-13 19:56:35 +03:00
"hot": "concurrently \"nodemon --exec npm test\" \"await tcp localhost:3000 && open-cli http://localhost:3000\"",
"hot:reload": "cross-env RELOAD=yes npm run hot"
2019-03-27 02:20:54 +03:00
},
"author": "Lospec",
"nodemonConfig": {
"ext": "js,hbs,scss",
"ignore": "build/"
},
2019-03-27 02:20:54 +03:00
"dependencies": {
"concurrently": "^6.0.2",
2019-03-27 02:20:54 +03:00
"express": "^4.16.4",
"fs-extra": "^7.0.1",
"gulp": "^4.0.2",
"gulp-hb": "^8.0.0",
2019-03-27 02:20:54 +03:00
"gulp-include": "^2.3.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.0.0",
"handlebars-helper-svg": "^2.0.2",
"nodemon": "^2.0.7",
"open": "^8.0.6",
"open-cli": "^6.0.1",
"sass": "^1.49.7"
},
"devDependencies": {
"cross-env": "7.0.3",
2021-07-18 18:03:46 +03:00
"reload": "^3.2.0",
"wait-cli": "^1.0.0"
2022-09-19 17:56:16 +03:00
},
"license": "GPL-3.0-only"
2019-03-27 02:20:54 +03:00
}