-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
41 lines (41 loc) · 1.19 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
{
"name": "jlongster.com",
"author": "James Long",
"scripts": {
"start": "npm-run-all --parallel watch:*",
"watch:node": "nodemon -w server server/main",
"%css%": "rm -fr ./static/build && postcss -c postcss.config.js './static/css/**/*.css' -m -d static/build --base static/css",
"build:css": "NODE_ENV=production yarn %css%",
"watch:css": "yarn %css% -- -w"
},
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@mdx-js/mdx": "^1.5.3",
"@mdx-js/react": "^1.5.3",
"express": "=4.13.4",
"highlight.js": "=9.2.0",
"invariant": "^2.2.4",
"moment": "=2.12.0",
"nconf": "=0.8.4",
"nunjucks": "=2.4.1",
"prism-react-renderer": "^0.1.6",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"remark-autolink-headings": "^5.2.1",
"remark-slug": "^5.1.2",
"sane": "^4.1.0",
"transducers.js": "^0.3.2",
"yaml-front-matter": "=3.4.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^1.2.0",
"autoprefixer": "^9.5.1",
"minimist": "^1.2.0",
"nodemon": "^1.9.1",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.16",
"postcss-cli": "^6.1.2",
"tailwindcss": "^1.0.1"
}
}