2017-07-01 17:40:03 +00:00
|
|
|
{
|
|
|
|
"name": "icynet.eu",
|
|
|
|
"version": "0.0.1-alpha1",
|
|
|
|
"description": "Icy Network web server",
|
2017-08-02 21:24:01 +00:00
|
|
|
"main": "icynet.eu.js",
|
2017-07-01 17:40:03 +00:00
|
|
|
"scripts": {
|
2017-08-02 21:24:01 +00:00
|
|
|
"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",
|
2017-09-15 11:22:48 +00:00
|
|
|
"js": "webpack",
|
|
|
|
"js:watch": "webpack -w",
|
|
|
|
"watch": "concurrently --kill-others \"npm run css:watch\" \"npm run js:watch\"",
|
2017-08-02 21:24:01 +00:00
|
|
|
"clean": "rm -rf build/",
|
2017-09-15 11:22:48 +00:00
|
|
|
"build": "npm run clean && npm run css && npm run js"
|
2017-07-01 17:40:03 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/IcyNet/IcyNet.eu.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"website",
|
|
|
|
"community",
|
|
|
|
"authentication"
|
|
|
|
],
|
|
|
|
"author": "Icy Network",
|
2017-08-24 18:36:40 +00:00
|
|
|
"license": "MIT",
|
2017-07-01 17:40:03 +00:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/IcyNet/IcyNet.eu/issues"
|
|
|
|
},
|
2017-08-02 21:24:01 +00:00
|
|
|
"homepage": "https://github.com/IcyNet/IcyNet.eu#readme",
|
|
|
|
"dependencies": {
|
|
|
|
"babel-core": "^6.25.0",
|
|
|
|
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
|
|
|
|
"bcryptjs": "^2.4.3",
|
2017-09-09 11:15:11 +00:00
|
|
|
"bluebird": "^3.5.0",
|
2017-08-02 21:24:01 +00:00
|
|
|
"body-parser": "^1.17.2",
|
|
|
|
"connect-redis": "^3.3.0",
|
|
|
|
"connect-session-knex": "^1.3.4",
|
2017-08-24 13:42:57 +00:00
|
|
|
"email-templates": "^2.7.1",
|
2017-08-02 21:24:01 +00:00
|
|
|
"express": "^4.15.3",
|
2017-08-23 22:25:52 +00:00
|
|
|
"express-rate-limit": "^2.9.0",
|
2017-08-02 21:24:01 +00:00
|
|
|
"express-session": "^1.15.3",
|
2017-08-25 16:42:30 +00:00
|
|
|
"gm": "^1.23.0",
|
2017-08-02 21:24:01 +00:00
|
|
|
"knex": "^0.13.0",
|
2017-08-25 16:42:30 +00:00
|
|
|
"multiparty": "^4.1.3",
|
2017-08-02 21:24:01 +00:00
|
|
|
"mysql": "^2.13.0",
|
|
|
|
"nodemailer": "^4.0.1",
|
|
|
|
"notp": "^2.0.3",
|
2017-08-03 12:57:17 +00:00
|
|
|
"oauth-libre": "^0.9.17",
|
2017-08-02 21:24:01 +00:00
|
|
|
"objection": "^0.8.4",
|
|
|
|
"pug": "^2.0.0-rc.3",
|
2017-09-07 18:30:52 +00:00
|
|
|
"serve-favicon": "^2.4.3",
|
2017-08-02 21:24:01 +00:00
|
|
|
"stylus": "^0.54.5",
|
|
|
|
"thirty-two": "^1.0.2",
|
|
|
|
"toml": "^2.3.2",
|
|
|
|
"uuid": "^3.1.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"concurrently": "^3.5.0",
|
2017-08-24 16:23:03 +00:00
|
|
|
"eslint-plugin-import": "^2.7.0",
|
2017-08-02 21:24:01 +00:00
|
|
|
"jquery": "^3.2.1",
|
2017-11-07 16:52:12 +00:00
|
|
|
"morgan": "^1.9.0",
|
2017-08-28 15:42:16 +00:00
|
|
|
"mustache": "^2.3.0",
|
2017-08-24 16:23:03 +00:00
|
|
|
"standard": "^10.0.3",
|
2017-09-15 11:22:48 +00:00
|
|
|
"uglifyjs-webpack-plugin": "^0.4.6",
|
2017-08-26 14:14:45 +00:00
|
|
|
"watch": "^1.0.2",
|
2017-09-15 11:22:48 +00:00
|
|
|
"webpack": "^3.6.0"
|
2017-08-02 21:24:01 +00:00
|
|
|
},
|
|
|
|
"standard": {
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
2017-08-24 16:23:03 +00:00
|
|
|
"node": true,
|
|
|
|
"jquery": true
|
2017-08-02 21:24:01 +00:00
|
|
|
}
|
|
|
|
}
|
2017-07-01 17:40:03 +00:00
|
|
|
}
|