-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 2.06 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
53
54
55
56
57
{
"name": "woocommerce-soundscan",
"version": "1.0.0",
"description": "WordPress plugin for uploading music sales from WooCommerce to Nielsen SoundScan.",
"main": "assets/main.js",
"repository": "git@github.com:awylie199/wp-soundscan.git",
"author": "Alexander Wylie <awylie199@gmail.com>",
"license": "GPL 3.0",
"private": true,
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"moment": "^2.19.1"
},
"scripts": {
"build": "export NODE_ENV=development && webpack --config webpack.js --progress --display-error-details --colors",
"build:prod": "export NODE_ENV=production && webpack --config webpack.js --progress --display-error-details --colors",
"watch": "export NODE_ENV=development && webpack --config webpack.js --progress --display-error-details --colors --watch",
"lint": "eslint client admin -c .eslintrc",
"lint:fix": "eslint client admin -c .eslintrc --fix"
},
"devDependencies": {
"autoprefixer": "^7.1.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"clean-webpack-plugin": "^0.1.17",
"copy-webpack-plugin": "^4.2.0",
"css-loader": "^0.28.7",
"eslint": "^4.8.0",
"eslint-config-defaults": "^9.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"expose-loader": "^0.7.3",
"extract-text-webpack-plugin": "^3.0.1",
"node-sass": "^4.5.3",
"postcss": "^6.0.13",
"postcss-loader": "^2.0.7",
"postcss-smart-import": "^0.7.5",
"precss": "^2.0.0",
"resolve-url-loader": "^2.1.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"stylelint": "^8.2.0",
"stylelint-config-css-modules": "^1.1.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-webpack-plugin": "^0.9.0",
"webpack": "^3.7.1"
}
}