-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 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
{
"name": "want-sample-app",
"version": "1.0.0",
"description": "starter template for web application using webpack, angularjs, nodejs (express) and typescript",
"main": "index.js",
"engines": {
"node": "4.7.0",
"yarn": "^0.27.5"
},
"scripts": {
"start": "node bin/npm-start.js",
"dev": "webpack-dev-server --progress --colors",
"postinstall": "node bin/npm-postinstall.js"
},
"author": "raz ben simon",
"license": "ISC",
"devDependencies": {
"@types/angular": "^1.6.29",
"@types/angular-animate": "^1.5.8",
"@types/angular-material": "^1.1.53",
"@types/express": "^4.0.36",
"@types/node": "^8.0.24",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.5",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.13.1",
"nodemon": "^1.11.0",
"resolve-url-loader": "^2.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"ts-loader": "^2.3.3",
"ts-node": "^3.3.0",
"typescript": "2.3.4",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"angular": "1.8.0",
"angular-animate": "1.5.11",
"angular-aria": "1.5.11",
"angular-material": "^1.1.4",
"angular-messages": "1.5.11",
"express": "^4.15.4"
}
}