-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.44 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.44 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
56
57
58
59
60
61
62
63
64
{
"private": true,
"name": "web",
"version": "1.0.0",
"description": "",
"main": "package.json",
"scripts": {
"babel-build": "babel src --out-dir dist/cjs",
"babel-dev": "babel src --watch --out-dir dist/cjs",
"build": "run-s clean babel-build parcel-build-* copy-static clean-static",
"clean": "rimraf .cache dist",
"clean-static": "rimraf dist/static/**/report.html",
"copy-static": "cpx 'static/*' dist/static/",
"deploy": "run-s build clean-static now-deploy",
"dev": "parcel src/dev.html",
"format": "prettier-eslint --write \"**/*.js\"",
"lint": "eslint .",
"now-build": "run-s babel-build parcel-build-*",
"now-dev": "run-p babel-dev parcel-dev",
"now-deploy": "now --target production",
"parcel-build-assets": "NODE_ENV=production parcel build src/assets/*.png --out-dir dist/static/assets --public-url /static/assets/",
"parcel-build-js": "NODE_ENV=production parcel build src/client.js --out-dir dist/static --public-url /static/",
"parcel-build-styles": "NODE_ENV=production parcel build src/styles/base.css src/styles/highlight.css --out-dir dist/static/styles --public-url /static/styles/",
"parcel-dev": "parcel watch src/client.js --out-dir dist/static",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Marius Lundgård <studio@mariuslundgard.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"cpx": "^1.5.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "^4.0.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.3",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"prettier-eslint-cli": "^4.7.1",
"rimraf": "^2.6.3"
},
"dependencies": {
"@sanity/block-content-to-react": "^2.0.6",
"@sanity/client": "^0.140.17",
"dataloader": "^1.4.0",
"highlight.js": "^9.15.8",
"intersection-observer": "^0.7.0",
"polished": "^3.4.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-lowlight": "^2.0.0",
"segmented-property": "^2.0.4",
"styled-components": "^4.2.1"
}
}