-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 730 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 730 Bytes
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
{
"name": "reasonable-website",
"version": "1.0.0",
"description": "A reasonable website.",
"author": "Matt Jones <matt@hew.tools>",
"license": "ISC",
"scripts": {
"build": "bsb -make-world",
"watch": "bsb -make-world -w",
"start": "npm run copy-css && npm run watch",
"copy-css": "cp src/*.css lib/js/src/",
"prod": "npm run copy-css && npm run build && npx parcel build index.html --public-url ./"
},
"dependencies": {
"@astrada/bs-styletron-react": "^0.1.3",
"bs-css-core": "^0.2.2",
"bs-fetch": "^0.2.1",
"bs-jest": "^0.3.2",
"bs-json": "^1.0.1",
"bs-platform": "^3.0.0",
"reason-react": "^0.3.2"
},
"devDependencies": {
"parcel-bundler": "^1.6.1"
}
}