-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
{
"name": "webapparch",
"version": "1.0.0",
"description": "simple arch",
"main": "index.js",
"scripts": {
"precommit": "npm run test-lint",
"test": "echo \"Error: no test specified\" && exit 0",
"test-lint": "./node_modules/.bin/eslint ./",
"build": "webpack",
"build:production": "NODE_ENV=production npm run build",
"build:qa": "NODE_ENV=qa npm run build",
"start": "webpack-dev-server"
},
"author": "Chandrasekar <[email protected]>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.1.2",
"babel-loader": "^8.0.4",
"@babel/preset-env": "^7.1.0",
"babel-polyfill": "^6.0.16",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.14.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"handlebars-loader": "^1.7.0",
"husky": "^0.14.3",
"node-sass": "^4.9.3",
"sass": "^1.3.2",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.5",
"workbox-webpack-plugin": "^3.6.3"
},
"dependencies": {
"handlebars": "^4.0.11",
"lodash": "^4.17.10"
}
}