-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.65 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
{
"name": "PacNEM",
"version": "0.8.8",
"author": "Grégory Saive <greg@evias.be>",
"description": "PacNEM is a PacMan game with NodeJS using NEM Blockchain",
"keywords": "pacman, game, nem, blockchain, rewards",
"repository": {
"type": "git",
"url": "https://github.com/evias/pacNEM.git"
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"config": "~1.25.1",
"connect-flash": "~0.1.1",
"cron": "~1.2.1",
"crypto-js": "3.1.9-1",
"express": "~3.3.4",
"express-handlebars": "~3.0.0",
"express-session": "~1.15.3",
"express-validator": "~3.2.0",
"grunt": "~1.0.1",
"grunt-cli": "latest",
"grunt-contrib-uglify": "latest",
"grunt-coveralls": "latest",
"grunt-mocha-istanbul": "~2.4.0",
"hammerjs": "latest",
"handlebars": "~4.0.5",
"http-auth": "~3.1.3",
"i18next": "~7.1.3",
"i18next-express-middleware": "~1.0.3",
"i18next-node-fs-backend": "~0.1.3",
"istanbul": "~0.3.13",
"kjua": "~0.1.1",
"mocha": "~2.2.4",
"mongoose": "~4.9.3",
"mongoose-increment": "~0.6.1",
"nem-sdk": "git://github.com/evias/NEM-sdk.git#dev-fee_structure",
"should": "~6.0.1",
"socket.io": "~1.3.5"
},
"scripts": {
"test": "node node_modules/mocha/bin/mocha",
"minify": "./node_modules/grunt-cli/bin/grunt uglify",
"postinstall": "./node_modules/grunt-cli/bin/grunt uglify",
"dist": "./node_modules/grunt-cli/bin/grunt uglify:dist && node app.js",
"start": "node app.js"
}
}