This repository has been archived by the owner on Jul 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
80 lines (80 loc) · 2.77 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "tradenomiitti",
"version": "1.0.0",
"description": "Löydä elämäsi tradenomi",
"main": "index.js",
"scripts": {
"preansible": "./conf/preinstall.sh",
"serverinstallbase": "./conf/serverinstallbase.sh",
"compilelocal": "./conf/compilelocal.sh",
"lint": "eslint server/",
"start": "node server/index.js",
"compilefrontend": "cd frontend && elm make src/Main.elm --output /srv/static/elm.js && browserify -t babelify js/main.js --outfile /srv/static/main.js",
"compilescss": "./conf/compilescss.sh /srv/static",
"compileassets": "cp frontend/assets/* node_modules/bootstrap-sass/assets/fonts/bootstrap/* node_modules/font-awesome/fonts/* /srv/static/ && ./conf/copy-index-with-ga.sh",
"deploy": "ansible-playbook conf/deploy.yml -i conf/inventory.ini --limit ${ENV_TO_DEPLOY:-dev} --tags 'deploy'",
"uploadanddeploy": "ansible-playbook conf/deploy.yml -i conf/inventory.ini --limit ${ENV_TO_DEPLOY:-dev}",
"seed-db": "knex migrate:latest && knex seed:run",
"test": "DISABLE_SEBACON=true ENABLE_EMAIL_SENDING=false mocha server/**/*.js --exit",
"testFrontend": "cd frontend && elm-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/futurice/tradenomiitti.git"
},
"author": "",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/futurice/tradenomiitti/issues"
},
"homepage": "https://github.com/futurice/tradenomiitti#readme",
"dependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"autocomplete.js": "^0.38.0",
"autoprefixer": "^10.2.6",
"babel-polyfill": "^6.26.0",
"babelify": "^10.0.0",
"body-parser": "^1.19.0",
"bootstrap-sass": "^3.4.1",
"browserify": "^17.0.0",
"cookie-session": "^1.4.0",
"cropperjs": "^1.5.11",
"d3-timer": "^2.0.0",
"elm": "^0.19.1-5",
"elm-format": "^0.8.5",
"elm-test": "^0.19.1-revision7",
"emailjs": "^3.4.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"file-type": "^16.5.0",
"font-awesome": "^4.7.0",
"gm": "^1.23.1",
"json2csv": "^5.0.6",
"knex": "^0.95.6",
"lodash.groupby": "^4.6.0",
"moment": "^2.29.1",
"node-sass": "^6.0.0",
"node-schedule": "^2.0.0",
"pg": "^8.6.0",
"postcss": "^8.3.0",
"postcss-cli": "^8.3.1",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"scroll-restoration-polyfill": "^0.6.1",
"smoothscroll-polyfill": "^0.4.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^8.4.0",
"mockdate": "^3.0.5",
"seedrandom": "^3.0.5",
"xml2js": "^0.4.23"
}
}