-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.7 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": "simpleChat",
"version": "0.1.1",
"description": "simple Chat for meteor",
"author": "Wieldo <[email protected]>",
"contributors": [
"Ścibor Rudnicki <[email protected]>"
],
"babel": {
"presets": [
"es2015"
]
},
"eslintConfig" : {
"parser": "babel-eslint"
},
"main": "",
"repository": {
"type": "git",
"url": "git+https://github.com/wieldo/simpleChat"
},
"scripts": {
"build:dev": "webpack --config tools/webpack.config.js --progress --set-env-NODE_ENV=dev",
"build:prod": "webpack --config tools/webpack.config.js --progress --set-env-NODE_ENV=prod",
"build": "npm run build:prod && npm run build:dev"
},
"dependencies": {
"angular": "^1.5.7",
"angular-animate": "^1.5.7",
"angular-aria": "^1.5.7",
"angular-formly": "^8.2.1",
"angular-material": "^1.1.0-rc.5",
"angular-messages": "^1.5.7",
"api-check": "^7.5.5",
"underscore": "^1.8.3"
},
"devDependencies": {
"argv-set-env": "^1.0.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.13.1",
"eslint-loader": "^1.4.1",
"html-loader": "^0.4.3",
"jquery": "^3.0.0",
"lodash": "^4.13.1",
"mocha": "^2.5.3",
"node-sass": "^3.8.0",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/wieldo/simpleChat/issues"
},
"homepage": "https://github.com/wieldo/simpleChat/blob/master/README.md",
"keywords": [
"chat",
"simple-chat",
"meteor",
"wieldo"
]
}