-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 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
{
"name": "vml",
"version": "1.0.0",
"description": "Vande Mataram Library",
"scripts": {
"start": "per-env",
"start:development": "npm run buildServer && npm run serve",
"start:production": "npm run buildServer && npm run buildClient && npm run serve",
"buildServer": "tsc",
"buildClient": "webpack --config config/webpack.config.prod.js",
"serve": "per-env",
"serve:development": "node build/server/devServer",
"serve:production": "nohup node -r dotenv/config build/server/prodServer &",
"lint": "tslint -c ./tslint.json './src/**/*.ts' './src/**/*.tsx'"
},
"pre-commit": [
"lint",
"buildServer"
],
"repository": {
"type": "git",
"url": "https://github.com/vandemataramlib/vml-web"
},
"keywords": [
"sanskrit"
],
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"boom": "^3.2.2",
"core-js": "^2.4.1",
"dotenv": "^2.0.0",
"fbjs": "^0.8.3",
"handlebars": "^4.0.5",
"hapi": "^13.5.0",
"history": "^3.0.0",
"hoek": "^4.0.2",
"inert": "^4.0.1",
"isomorphic-fetch": "^2.2.1",
"jsonapi-serializer": "^3.3.0",
"lodash": "^4.15.0",
"material-ui": "^0.15.4",
"mobx": "^2.4.2",
"mobx-react": "^3.5.5",
"per-env": "^1.0.2",
"react": "^15.3.0",
"react-anything-sortable": "^1.6.1",
"react-dom": "^15.3.0",
"react-router": "^2.6.1",
"react-router-scroll": "^0.3.1",
"react-tap-event-plugin": "^1.0.0",
"sanscript": "^0.0.2",
"vision": "^4.1.0",
"vml-common": "https://github.com/vandemataramlib/vml-common.git"
},
"devDependencies": {
"awesome-typescript-loader": "^2.1.1",
"exiting": "^2.0.1",
"mobx-react-devtools": "^4.2.4",
"pre-commit": "^1.1.3",
"react-hot-loader": "^3.0.0-beta.2",
"tslint": "^3.14.0",
"typescript": "^1.8.10",
"webpack": "^1.13.1",
"webpack-hot-middleware": "^2.12.2",
"webpack-notifier": "^1.3.2"
}
}