-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 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
37
38
39
40
41
42
{
"name": "components",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "errno ENOSYS",
"watch": "webpack --config webpack.dev.js -w",
"serve": "lite-server --baseDir=public",
"build": "webpack --config webpack.prod.js",
"dev": "concurrently \"npm run watch\" \"npm run serve\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"autoprefixer": "^9.6.0",
"babel-loader": "^8.0.6",
"babel-plugin-angularjs-annotate": "^0.10.0",
"concurrently": "^4.1.1",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.0.0",
"lite-server": "^2.5.3",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"angular": "^1.7.8"
},
"browserslist": [
"ie >= 11",
"Firefox >= 26",
"Chrome >= 31"
]
}