69 lines
2.1 KiB
JSON
69 lines
2.1 KiB
JSON
{
|
|
"name": "icynet.eu",
|
|
"version": "0.0.1-alpha1",
|
|
"description": "Icy Network web server",
|
|
"main": "icynet.eu.js",
|
|
"scripts": {
|
|
"start": "node icynet.eu.js",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"css": "mkdir -p build/style && stylus -o build/style src/style/*.styl",
|
|
"css:watch": "mkdir -p build/style && stylus -w -o build/style src/style/*.styl",
|
|
"js": "mkdir -p build/script && browserify src/script/main.js -o build/script/main.js && uglifyjs --overwrite build/script/main.js",
|
|
"js:watch": "mkdir -p build/script && watchify src/script/main.js -o build/script/main.js",
|
|
"watch": "concurrently --kill-others \"npm run css:watch\" \"npm run js:watch\"",
|
|
"clean": "rm -rf build/",
|
|
"build": "npm run clean && npm run css && npm run js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/IcyNet/IcyNet.eu.git"
|
|
},
|
|
"keywords": [
|
|
"website",
|
|
"community",
|
|
"authentication"
|
|
],
|
|
"author": "Icy Network",
|
|
"license": "GPL-3.0",
|
|
"bugs": {
|
|
"url": "https://github.com/IcyNet/IcyNet.eu/issues"
|
|
},
|
|
"homepage": "https://github.com/IcyNet/IcyNet.eu#readme",
|
|
"dependencies": {
|
|
"babel-core": "^6.25.0",
|
|
"babel-plugin-syntax-async-functions": "^6.13.0",
|
|
"babel-plugin-transform-async-to-generator": "^6.24.1",
|
|
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
|
|
"bcryptjs": "^2.4.3",
|
|
"body-parser": "^1.17.2",
|
|
"connect-redis": "^3.3.0",
|
|
"connect-session-knex": "^1.3.4",
|
|
"express": "^4.15.3",
|
|
"express-session": "^1.15.3",
|
|
"knex": "^0.13.0",
|
|
"mysql": "^2.13.0",
|
|
"nodemailer": "^4.0.1",
|
|
"notp": "^2.0.3",
|
|
"objection": "^0.8.4",
|
|
"pug": "^2.0.0-rc.3",
|
|
"stylus": "^0.54.5",
|
|
"thirty-two": "^1.0.2",
|
|
"toml": "^2.3.2",
|
|
"uuid": "^3.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"browserify": "^14.4.0",
|
|
"concurrently": "^3.5.0",
|
|
"jquery": "^3.2.1",
|
|
"standard": "^10.0.2",
|
|
"uglify-js": "^1.3.5",
|
|
"watchify": "^3.9.0"
|
|
},
|
|
"standard": {
|
|
"env": {
|
|
"browser": true,
|
|
"node": true
|
|
}
|
|
}
|
|
}
|