This repository was archived by the owner on Jun 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.96 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.96 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
65
66
67
68
69
{
"name": "brunch-app",
"description": "Brunch.io application with Preact, Atom, LESS modules and Babel.",
"private": true,
"author": "Adrian Unger",
"version": "0.1.0",
"repository": "",
"scripts": {
"preinstall": "if test \"$NODE_ENV\" = \"production\"; then rm -rf public; fi; mkdir -p public; touch public/contentCache.js;",
"postinstall": "if test \"$NODE_ENV\" = \"production\"; then npm run build; fi",
"start": "if test \"$NODE_ENV\" = \"production\"; then npm run serve; else npm run dev; fi",
"dev": "run-p watch serve",
"serve": "babel-node server",
"watch": "brunch watch",
"build": "brunch build --production",
"test": "npm run std",
"std": "standard --verbose | snazzy"
},
"dependencies": {
"auto-reload-brunch": "2.7.1",
"babel-brunch": "6.1",
"babel-cli": "6.26.0",
"babel-plugin-jsx-import": "github:staydecent/babel-plugin-jsx-import",
"babel-plugin-module-resolver": "3.1.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24",
"brunch": "2",
"classless-component": "1.0.1",
"ejs": "2.6.1",
"less-brunch": "2.10.0",
"pleeease-brunch": "3.0.0",
"preact": "8.2.9",
"preact-helmet": "4.0.0-alpha-3",
"preact-portal": "1.1.3",
"preact-render-to-string": "3.7.0",
"preact-router": "2.6.1",
"querystringify": "2.0.0",
"redux": "4.0.0",
"redux-devtools-extension": "2.13.2",
"replacer-brunch": "1.0.1",
"throttle-debounce": "1.0.1",
"ua-parser-js": "0.7.18",
"uglify-js-brunch": "2.10.0",
"wasmuth": "1.13.1",
"xmlhttprequest": "1.8.0"
},
"devDependencies": {
"npm-run-all": "^4.1.3",
"snazzy": "^7.1.1",
"standard": "^10.0.3"
},
"engines": {
"node": "8.9.x"
},
"standard": {
"globals": [
"Preact",
"W",
"log",
"Rollbar",
"__ENV__"
],
"ignore": [
"build",
"client/assets"
]
}
}