-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.75 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "sqs-build",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"test": "mocha",
"start": "yarn dev:no-server",
"watch": "./node_modules/.bin/webpack -d --watch --colors",
"build": "webpack -p --config ./build-tools/webpack/webpack.prod.js && yarn docs",
"dev": "yarn dev:server",
"dev:server": "webpack-dev-server ./main.js --hot --watch --colors --open --config ./build-tools/webpack/webpack.dev.js",
"dev:no-server": "webpack --progress --colors --watch --open --config ./build-tools/webpack/webpack.dev.js",
"debug": "node --inspect --debug-brk ./main.js",
"sqs": "squarespace-server https://DOMAIN.squarespace.com --auth -d ./template",
"docs": "documentation build --output ./README.md --format md",
"analyze": "npm run build --env.presets analyze"
},
"babel": {
"presets": [
"env"
]
},
"author": "Ben Obee",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^8.6.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.24.0",
"babel-eslint": "^8.2.5",
"babel-loader": "^7.1.5",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-runtime": "^6.23.0",
"compression-webpack-plugin": "^1.1.11",
"concurrently": "^3.6.0",
"css-loader": "^1.0.0",
"documentation": "^8.0.0",
"es6-promise": "^4.1.1",
"eslint": "^5.1.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-google": "^0.9.1",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-watch": "^4.0.1",
"exports-loader": "^0.7.0",
"github-release-cli": "^0.4.1",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^3.2.0",
"imports-loader": "^0.8.0",
"json-loader": "^0.5.4",
"less": "^3.6.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.1",
"npm-run-parallel": "^0.6.0",
"path": "^0.12.7",
"postcss-loader": "^2.1.6",
"postcss-smart-import": "^0.7.6",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.15.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.3"
},
"dependencies": {
"component-literal": "^1.5.3"
}
}