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": {
|
2020-04-04 10:36:08 +03:00
|
|
|
"build": "node ./build.js ./build",
|
2022-03-13 19:56:35 +03:00
|
|
|
"serve": "node ./server.js ./build 3000",
|
2021-04-25 20:19:01 +03:00
|
|
|
"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\"",
|
2021-04-29 00:36:41 +03:00
|
|
|
"hot:reload": "cross-env RELOAD=yes npm run hot"
|
2019-03-27 02:20:54 +03:00
|
|
|
},
|
|
|
|
"author": "Lospec",
|
2021-04-25 23:03:55 +03:00
|
|
|
"nodemonConfig": {
|
|
|
|
"ext": "js,hbs,scss",
|
|
|
|
"ignore": "build/"
|
|
|
|
},
|
2019-03-27 02:20:54 +03:00
|
|
|
"dependencies": {
|
2021-04-25 23:03:55 +03:00
|
|
|
"concurrently": "^6.0.2",
|
2019-03-27 02:20:54 +03:00
|
|
|
"express": "^4.16.4",
|
|
|
|
"fs-extra": "^7.0.1",
|
2020-04-04 18:43:31 +03:00
|
|
|
"gulp": "^4.0.2",
|
|
|
|
"gulp-hb": "^8.0.0",
|
2019-03-27 02:20:54 +03:00
|
|
|
"gulp-include": "^2.3.1",
|
2020-04-04 18:43:31 +03:00
|
|
|
"gulp-rename": "^2.0.0",
|
2021-12-09 02:42:09 +03:00
|
|
|
"gulp-sass": "^5.0.0",
|
2021-07-07 00:24:20 +03:00
|
|
|
"handlebars-helper-svg": "^2.0.2",
|
2021-04-25 20:19:01 +03:00
|
|
|
"nodemon": "^2.0.7",
|
2021-04-25 23:03:55 +03:00
|
|
|
"open": "^8.0.6",
|
|
|
|
"open-cli": "^6.0.1",
|
2022-02-23 19:16:23 +03:00
|
|
|
"sass": "^1.49.7"
|
2021-04-25 23:03:55 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-04-29 00:36:41 +03:00
|
|
|
"cross-env": "7.0.3",
|
2021-07-18 18:03:46 +03:00
|
|
|
"reload": "^3.2.0",
|
2021-04-25 23:03:55 +03:00
|
|
|
"wait-cli": "^1.0.0"
|
2019-03-27 02:20:54 +03:00
|
|
|
}
|
|
|
|
}
|