-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 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
58
{
"name": "vam-fractal",
"version": "2.0.0",
"description": "Visual Style Guide for V&A websites",
"homepage": "https://vam-design-guide.surge.sh",
"repository": {
"type": "git",
"url": "https://github.com/vanda/vam-fractal.git"
},
"bugs": "https://github.com/vanda/vam-fractal/issues",
"dependencies": {
"browser-cookies": "^1.2.0",
"clamp-js": "^0.7.0",
"openseadragon": "^3.x",
"surge": "^0.23.1"
},
"scripts": {
"dev": "NODE_ENV=development concurrently 'node ./fractal-server' 'npm run build-dev:webpack'",
"build": "NODE_ENV=production npm run build-prod:webpack && node ./fractal-builder",
"pub": "NODE_ENV=production npm run build-prod:webpack && node ./fractal-builder && npm run pub-prod:surge && npm run clean",
"build-dev:webpack": "webpack --config ./webpack.dev.js --watch",
"build-prod:webpack": "webpack --config ./webpack.prod.js",
"pub-prod:surge": "surge --project www --domain vam-design-guide.surge.sh",
"ci-lint:sass": "node_modules/.bin/stylelint src/**/*.scss",
"clean": "node ./fractal-clean"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@frctl/fractal": "^1.5.14",
"@frctl/nunjucks": "^2.0.15",
"concurrently": "^8.0.1",
"css-loader": "^6.7.1",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-webpack-plugin": "^4.0.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.18",
"postcss-loader": "^7.0.1",
"postcss-preset-env": "^8.3.0",
"sass": "^1.56.1",
"sass-loader": "^13.1.0",
"style-loader": "^3.3.1",
"stylelint": "^15.4.0",
"stylelint-config-standard-scss": "^7.0.1",
"stylelint-webpack-plugin": "^4.1.0",
"svg-sprite-loader": "^6.0.11",
"svgo-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.8.0",
"webpack-remove-empty-scripts": "^1.0.1"
}
}