forked from jettcalleja/cdi-web-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.14 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
{
"name": "cdi-web-app",
"version": "1.0.0",
"description": "## Introduction",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development node_modules/.bin/webpack-dev-server --open",
"build": "rimraf dist && NODE_ENV=production node_modules/.bin/webpack -p",
"precommit": "lint-staged",
"prettify": "prettier --tab-width 4 --single-quote --write \"./src/**/*.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/mightybulacs/cdi-web-app"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mightybulacs/cdi-web-app/issues"
},
"homepage": "https://github.com/mightybulacs/cdi-web-app/#readme",
"dependencies": {
"@uirouter/angularjs": "^1.0.4",
"angular": "^1.6.4",
"angular-animate": "^1.6.4",
"angular-aria": "^1.6.4",
"angular-cookies": "^1.6.4",
"angular-drag-and-drop-lists": "^2.1.0",
"angular-loading-bar": "^0.9.0",
"angular-messages": "^1.6.4",
"angular-permission": "^6.0.0",
"angular-sanitize": "^1.6.4",
"angular-socket-io": "^0.7.0",
"angular-toastr": "^2.1.1",
"angular-ui-bootstrap": "^2.5.0",
"angularjs-slider": "^6.2.2",
"bootstrap": "^3.3.7",
"file-saver": "^1.3.3",
"font-awesome": "^4.7.0",
"moment": "^2.20.1",
"socket.io": "^2.0.3"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.2",
"compression-webpack-plugin": "^0.4.0",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.2",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.29.0",
"husky": "^0.13.4",
"jsts": "^1.4.0",
"lint-staged": "^4.0.0",
"prettier": "^1.4.4",
"rimraf": "^2.6.1",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.0.0",
"webpack-bundle-size-analyzer": "^2.7.0",
"webpack-dev-server": "^2.5.0",
"webpack-manifest-plugin": "^1.1.0"
},
"lint-staged": {
"src/**/*.{js,css}": [
"prettier --tab-width 4 --single-quote --write",
"git add"
]
}
}