-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.25 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
{
"name": "wordgame",
"version": "0.0.1",
"description": "small word puzzle game",
"main": "app.js",
"scripts": {
"setup": "npm install && typings install",
"clean-docs": "rimraf docs/**/*",
"clean-build": "rimraf build/**/*",
"clean": "npm run clean-docs && npm run clean-build",
"build": "npm run clean && webpack --progress --colors",
"serve": "webpack-dev-server --content-base app/ --progress --colors --inline --hot",
"test": "karma start"
},
"keywords": [
"angular",
"typescript",
"bootstrap",
"gulp",
"webpack",
"graphql",
"rest",
"soap",
"socketio",
"protobuf",
"karma",
"chai",
"mocha",
"jasmine",
"protractor",
"angular2.0"
],
"author": "Ciprian Tibulca",
"license": "ISC",
"devDependencies": {
"angular-mocks": "^1.5.3",
"autoprefixer": "^6.3.3",
"bootstrap-loader": "^1.0.1",
"chai": "^3.4.1",
"constants": "0.0.2",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^0.9.1",
"file-loader": "^0.8.5",
"gulp": "^3.9.0",
"gulp-ngdocs": "^0.2.13",
"html-webpack-plugin": "^1.7.0",
"imports-loader": "^0.6.5",
"karma": "^0.13.16",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.2",
"karma-cli": "^0.1.2",
"karma-coverage": "^0.5.3",
"karma-mocha": "^0.2.1",
"karma-phantomjs-launcher": "^0.2.2",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.4",
"ng-annotate-webpack-plugin": "^0.1.2",
"node-sass": "^3.4.2",
"phantomjs": "^1.9.19",
"postcss-loader": "^0.8.0",
"protractor": "^3.0.0",
"raw-loader": "^0.5.1",
"resolve-url-loader": "^1.4.3",
"rimraf": "^2.5.0",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"ts-loader": "^0.7.2",
"tslint": "^3.2.1",
"tslint-loader": "^2.1.0",
"typings": "^0.7.12",
"typescript": "^2.1.4",
"url-loader": "^0.5.7",
"webpack": "^1.12.9",
"webpack-config": "^3.1.0",
"webpack-dev-server": "^1.14.0",
"webpack-stream": "^3.1.0"
},
"dependencies": {
"angular": "^1.5.3",
"bootstrap": "^3.3.6",
"bootstrap-sass": "^3.3.6",
"jquery": "^2.1.4",
"knuth-shuffle": "^1.0.1",
"socket.io-client": "^1.3.7"
}
}