-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
38 lines (38 loc) · 1.32 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
{
"name": "toml.io",
"version": "1.0.0",
"scripts": {
"build": "$npm_execpath spec_to_html && webpack && postcss --verbose code/stylesheets/application.pcss -o publish/stylesheets/application.css",
"clean": "del 'publish/!(images|favicon.*)' 'code/html/!(layouts|*.template|404.html)'",
"dev": "$npm_execpath serve & $npm_execpath watch",
"netlify": "$npm_execpath watch & netlify dev",
"serve": "live-server --watch=./publish --mount=/:./publish --entry-file='publish/404.html'",
"spec_to_html": "node lib/spec_to_html.js",
"rebuild": "$npm_execpath clean && $npm_execpath build",
"watch": "webpack --watch & postcss --verbose code/stylesheets/application.pcss -o publish/stylesheets/application.css --watch"
},
"license": "MIT",
"private": true,
"devDependencies": {
"del-cli": "^3.0.0",
"live-server": "^1.2.1"
},
"dependencies": {
"autoprefixer": "^9.8.3",
"cameronjs-html-webpack-plugin": "0.4.2",
"html-entities": "^1.3.1",
"marked": "^1.1.0",
"postcss-cli": "^7.1.1",
"postcss-import": "^12.0.1",
"postcss-nesting": "^7.0.1",
"stimulus": "^1.1.1",
"string-dasherize": "^1.0.0",
"striptags": "^3.2.0",
"tailwindcss": "^1.4.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"peerDependencies": {
"cameronjs": "^0.5.7"
}
}