-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.6 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.6 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
49
50
51
52
53
54
55
{
"name": "styleguide-starterkit",
"version": "0.5.0",
"description": "A starterkit to create styleguides with Fractal and Webpack.",
"keywords": [
"styleguide",
"toolkit",
"boilerplate",
"starterkit",
"fractal"
],
"repository": {
"type": "git",
"url": "https://github.com/liip/styleguide-starterkit.git"
},
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development concurrently 'node ./server.js' 'webpack-dev-server --hot'",
"build": "NODE_ENV=production concurrently 'npm run build:fractal' 'npm run build:webpack'",
"build:webpack": "NODE_ENV=production webpack",
"build:fractal": "NODE_ENV=production fractal build",
"release": "release-it",
"deploy": "echo \"No deploy script specified, skipping…\" && exit 0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@frctl/fractal": "^1.3.0",
"@frctl/nunjucks": "^2.0.2",
"@release-it/conventional-changelog": "^1.1.4",
"autoprefixer": "^9.8.0",
"babel-loader": "^8.1.0",
"concurrently": "^5.2.0",
"css-loader": "^3.5.3",
"cssnano": "^4.1.10",
"file-loader": "^6.0.0",
"marked": "^1.1.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"postcss": "^7.0.32",
"postcss-cli": "^7.1.1",
"postcss-loader": "^3.0.0",
"release-it": "^13.6.2",
"sass-loader": "^8.0.2",
"svg-sprite-loader": "^5.0.0",
"svgo": "^1.3.2",
"svgo-loader": "^2.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"engines": {
"node": ">=6 <=10"
}
}