-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.18 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
{
"name": "storykart",
"version": "1.0.0",
"description": "educational platform to create and share interactive stories",
"main": "index.js",
"scripts": {
"clean": "rm -rf build",
"typings-install": "typings install",
"prebuild": "npm run clean",
"build": "webpack --progress --colors",
"prebuild:prod": "npm run clean",
"build:prod": "webpack --config webpack.prod.config.js --progress --profile --colors --display-error-details --display-cached",
"start": "node --optimize_for_size --max_old_space_size=460 --gc_interval=100 server/index.js",
"start:dev": "export NODE_ENV=development && npm start",
"start:prod": "export NODE_ENV=production && npm start",
"postinstall": "npm run typings-install && npm run build:prod",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nalinc/storypad.git"
},
"keywords": [
"learning",
"storyboarding",
"education"
],
"author": "nalinc <nalin.chhibber@gmail.com> (http://nalinc.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nalinc/storypad/issues"
},
"homepage": "https://github.com/Nalinc/storypad#readme",
"dependencies": {
"@angular/common": "2.0.0",
"@angular/compiler": "2.0.0",
"@angular/core": "2.0.0",
"@angular/http": "2.0.0",
"@angular/platform-browser": "2.0.0",
"@angular/platform-browser-dynamic": "2.0.0",
"@angular/router": "3.0.0",
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"compression-webpack-plugin": "0.3.1",
"copy-webpack-plugin": "3.0.1",
"css-loader": "^0.23.1",
"express": "^4.14.0",
"express-handlebars": "^3.0.0",
"jquery": "^3.1.0",
"jquery-ui": "1.12.1",
"mongoose": "^4.6.2",
"node-sass": "^3.9.3",
"nodemailer": "^2.6.4",
"raw-loader": "^0.5.1",
"reflect-metadata": "0.1.3",
"rxjs": "5.0.0-beta.12",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"ts-loader": "^0.8.2",
"typescript": "^1.8.10",
"typings": "^1.3.2",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2",
"zone.js": "^0.6.23"
}
}