forked from webkom/vote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.71 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
81
82
83
84
85
86
87
88
{
"name": "vote",
"version": "1.0.0",
"description": "Vote optimizes the election.",
"main": "app.js",
"scripts": {
"start": "node index.js",
"build": "webpack --config webpack/prod.config.js",
"test": "yarn lint && yarn mocha && yarn protractor",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint . --ignore-path .gitignore",
"lint:prettier": "prettier '**/*.js' --list-different --ignore-path .gitignore",
"prettier": "prettier '**/*.js' --write",
"mocha": "NODE_ENV=test MONGO_URL=${MONGO_URL:-'mongodb://localhost:27017/vote-test'} nyc mocha test/**/*.test.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"protractor": "webdriver-manager update --standalone false && NODE_ENV=protractor MONGO_URL=${MONGO_URL:-'mongodb://localhost:27017/vote-test'} protractor ./features/protractor-conf.js",
"postinstall": "npm run build",
"toggle": "node ./features/toggleUsers.js",
"postinstall": "yarn build"
},
"prettier": {
"singleQuote": true
},
"author": "Webkom <webkom@abakus.no>",
"repository": {
"type": "git",
"url": "git@github.com:webkom/vote.git"
},
"license": "MIT",
"dependencies": {
"angular": "1.5.5",
"angular-local-storage": "0.2.7",
"angular-route": "1.5.5",
"angular-ui-bootstrap": "1.3.3",
"bcrypt": "1.0.3",
"bluebird": "3.5.1",
"body-parser": "1.18.2",
"bootstrap": "~3.3.6",
"chalk": "2.3.0",
"commander": "2.13.0",
"connect-flash": "0.1.1",
"connect-mongo": "2.0.1",
"cookie-parser": "1.4.3",
"css-loader": "0.26.1",
"csurf": "1.9.0",
"express": "4.16.2",
"express-promise-router": "3.0.1",
"express-session": "1.15.6",
"extract-text-webpack-plugin": "1.0.1",
"font-awesome-webpack": "0.0.4",
"lodash": "4.17.4",
"method-override": "2.3.10",
"mongoose": "5.0.1",
"nib": "1.1.2",
"nyc": "11.4.1",
"object-assign": "4.1.1",
"passport": "0.3.2",
"passport-local": "1.0.0",
"passport-stub": "1.1.1",
"prompt": "1.0.0",
"promptly": "2.1.0",
"pug": "2.0.0-rc.4",
"raven": "2.3.0",
"serve-favicon": "2.4.5",
"socket.io": "1.7.2",
"style-loader": "0.13.1",
"stylus": "0.54.5",
"stylus-loader": "2.4.0",
"webpack": "1.14.0"
},
"devDependencies": {
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"coveralls": "3.0.0",
"cucumber": "0.10.3",
"eslint": "4.16.0",
"eslint-config-prettier": "2.9.0",
"mkdirp": "^0.5.1",
"mocha": "5.0.0",
"prettier": "1.10.2",
"protractor": "4.0.14",
"protractor-cucumber-framework": "0.6.0",
"sinon": "4.2.0",
"sinon-chai": "2.14.0",
"supertest": "3.0.0",
"webpack-dev-middleware": "1.9.0"
}
}