-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.33 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.33 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
{
"name": "card-creator",
"version": "0.1.0",
"description": "For creating cards in the browser",
"bin": {
"fcp": "bin/fcp.js"
},
"scripts": {
"postinstall": "npx st-mkdir projects && node ./bin/fcp.js sass/card-example.scss sass/card.scss --no-overwrite && node ./bin/fcp.js card-example.html card.html --no-overwrite && webpack --config webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --config webpack.config.js --watch",
"jubbly": "webpack serve --config webpack.config.js",
"dev": "webpack --config webpack.config.js",
"build": "webpack --config webpack.config.js",
"serve": "npx http-server -o"
},
"keywords": [
"board game",
"card game",
"print"
],
"author": {
"name": "Harry Mustoe-Playfair",
"email": "harry.mustoeplayfair@gmail.com",
"url": "mustoeplayfair.com"
},
"license": "MIT",
"devDependencies": {
"autoprefixer": "^10.4.18",
"css-loader": "^6.10.0",
"mini-css-extract-plugin": "^2.8.1",
"ncp-plus": "^2.0.4",
"postcss-cli": "^11.0.0",
"sass": "^1.71.1",
"sass-loader": "^14.1.1",
"style-loader": "^3.3.4",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"markdown-it": "^14.0.0",
"st-mkdir": "^1.0.0-beta.1"
}
}