-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 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
43
44
45
46
47
48
{
"name": "test-theme",
"version": "1.0.0",
"description": "",
"author": "",
"scripts": {
"start": "./node_modules/.bin/webpack --watch",
"build-production": "export NODE_ENV=production && ./node_modules/.bin/webpack",
"precommit": "npm run vet",
"lint": "./node_modules/.bin/eslint src/",
"vet": "npm list --depth=0 && npm run lint"
},
"dependencies": {
"foundation-sites": "^6.4.1",
"jquery": "^3.2.1",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"autoprefixer": "^8.4.1",
"babel-core": "^6.26.0",
"babel-loader": "7.1.1",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"eslint": "^3.12.2",
"eslint-config-clockwork": "0.0.8",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.5",
"husky": "^0.14.3",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.8",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.5.6",
"webpack-notifier": "^1.5.0",
"yargs": "^8.0.2"
},
"config": {
"paths": {
"output": "dist",
"source": "src"
}
},
"engines": {
"node": "^8.9.3",
"npm": "^5.5.1"
}
}