-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.35 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "tags-input-code-comparison",
"version": "0.0.1",
"description": "Code comparison of different implementations same tags-input component.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dakolech/tags-input-code-comparison.git"
},
"author": "Daniel Koza <dakolech@gmail.com> (https://github.com/dakolech)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dakolech/tags-input-code-comparison/issues"
},
"engines": {
"node": "4.3.2"
},
"homepage": "https://github.com/dakolech/tags-input-code-comparison#readme",
"scripts": {
"build": "rimraf dist && webpack --config ./webpack.production.config.js",
"lint": "npm run eslint && npm run tslint",
"eslint": "eslint 'src/**/*.js' 'server/**/*.js'",
"tslint": "tslint 'src/**/*.ts'",
"start": "node index.js",
"dev": "nodemon --exec \"node index.js\"",
"test": "./node_modules/karma/bin/karma start",
"test-once": "npm run test -- --single-run",
"test-travis": "./node_modules/karma/bin/karma start --single-run --browsers=Chrome,Firefox",
"travis": "npm run lint && npm run test-travis",
"push": "npm run lint && npm run test-once && git push"
},
"dependencies": {
"angular": "^1.5.2",
"angular2": "^2.0.0-beta.13",
"autoprefixer": "^6.3.5",
"awesome-typescript-loader": "^0.17.0-rc.5",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-plugin-angular2-annotations": "^5.0.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-preset-es2015": "^6.6.0",
"body-parser": "^1.15.0",
"bootstrap": "^3.3.6",
"compression-webpack-plugin": "^0.3.1",
"css-loader": "^0.23.1",
"es6-promise": "^3.1.2",
"es6-shim": "^0.35.0",
"express": "^4.13.4",
"file-loader": "^0.8.5",
"install": "^0.6.1",
"jade": "^1.11.0",
"jade-loader": "^0.8.0",
"node-sass": "^3.4.2",
"npm": "^3.8.5",
"postcss-loader": "^0.8.2",
"reflect-metadata": "0.1.2",
"resolve-url-loader": "^1.4.3",
"rimraf": "^2.5.2",
"rx": "^4.1.0",
"rx-angular": "^1.1.3",
"rxjs": "^5.0.0-beta.2",
"sass-loader": "^3.2.0",
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5",
"style-loader": "^0.13.1",
"typedoc": "^0.3.12",
"typescript": "^1.8.9",
"typings": "^0.7.12",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.10.0",
"webpack-md5-hash": "0.0.5",
"zone.js": "^0.6.8"
},
"devDependencies": {
"angular-mocks": "^1.5.2",
"babel-eslint": "^6.0.2",
"codelyzer": "0.0.12",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-config-angular": "^0.5.0",
"eslint-plugin-angular": "^1.0.0",
"eslint-plugin-react": "^4.2.3",
"isparta-loader": "^2.0.0",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"jquery": "^2.2.2",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.2",
"karma-cli": "^0.1.2",
"karma-firefox-launcher": "^0.1.7",
"karma-jasmine": "^0.3.8",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"nodemon": "^1.9.1",
"tslint": "^3.7.1",
"tslint-eslint-rules": "^1.2.0"
}
}