-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.08 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.08 KB
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
{
"name": "webpack-time-logger",
"version": "0.0.0",
"description": "A sample application used to understand Webpack",
"homepage": "https://github.com/Workfront/webpack-time-logger",
"repository": {
"type": "git+https",
"url": "https://github.com/Workfront/webpack-time-logger.git"
},
"private": true,
"scripts": {
"clean": "rimraf time-logger.js time-logger.js.map time-logger-2.js time-logger-2.js.map common.js common.js.map",
"start": "webpack && http-server -p 8080",
"watch": "webpack-dev-server --hot --inline --config webpack.config.js"
},
"author": "Jeremy Lund <jeremylund@workfront.com>",
"license": "Apache-2.0",
"devDependencies": {
"css-loader": "0.23.0",
"http-server": "0.8.5",
"jshint": "^2.8.0",
"jshint-loader": "^0.8.3",
"ng-annotate-loader": "0.0.10",
"raw-loader": "0.5.1",
"rimraf": "2.4.4",
"style-loader": "0.13.0",
"uuid": "2.0.1",
"webpack": "1.12.9",
"webpack-dev-server": "1.14.0"
},
"dependencies": {
"angular": "1.3.19",
"angular-route": "1.3.19",
"moment": "2.10.6"
}
}