-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.99 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "hyperfolio",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run dev",
"dev:build": "npx rimraf dist && npx webpack --config webpack.dev.js",
"prod:build": "npx rimraf dist && npx webpack --config webpack.prod.js && npx rimraf dist/dist",
"dev:wds": "npx webpack-dev-server --open --port 3000 --content-base dist --history-api-fallback --watch-content-base --config webpack.dev.js",
"prod:wds": "npx webpack-dev-server --open --compress --port 3000 --content-base dist --history-api-fallback --watch-content-base --config webpack.prod.js",
"dev": "npm run dev:build && npm run dev:wds",
"prod": "npm run prod:build && npm run prod:wds",
"js:prettify": "npx prettier --parser=babylon --write \"src/**/*.{js,jsx}\"",
"css:prettify": "npx prettier --parser=css --write \"src/**/*.css\"",
"format": "npm run css:prettify && npm run js:prettify",
"precommit": "npx lint-staged",
"deploy": "npm run prod:build && npx surge"
},
"author": "Naomi Hauret",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"brotli-gzip-webpack-plugin": "^0.5.0",
"brotli-webpack-plugin": "^1.0.0",
"browserslist": "^3.2.7",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"dotenv-webpack": "^1.5.5",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"glob": "^7.1.2",
"glob-all": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"hyperapp-devtools": "^0.3.0",
"imagemin-webpack-plugin": "^2.1.5",
"lint-staged": "^7.1.0",
"postcss": "^6.0.22",
"postcss-cssnext": "^3.1.0",
"postcss-fontpath": "^1.0.0",
"postcss-loader": "^2.1.5",
"postcss-normalize": "^4.0.0",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"rimraf": "^2.6.2",
"social-tags-webpack-plugin": "0.0.9",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"webapp-webpack-plugin": "^2.1.0",
"webpack": "^3.11.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^2.9.7",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"@hyperapp/router": "^0.7.0",
"@hyperapp/transitions": "^1.0.2",
"blazy": "^1.8.2",
"cxs": "^6.2.0",
"design-system-utils": "^0.12.1",
"hyperapp": "^1.2.5",
"pixi-filters": "^2.6.0",
"pixi.js": "^4.7.3",
"prismic-javascript": "^1.5.0-beta.3",
"surge": "^0.20.1",
"youtube-player": "^5.5.0"
},
"browserslist": [
"> 0.25%",
"not ie <=11",
"not ie_mob <=11",
"not bb <=10",
"not op_mob <= 37",
"not samsung <= 7",
"not op_mini all"
],
"lint-staged": {
"src/**/*.{js,jsx}": [
"npx prettier --parser=babylon --write \"src/**/*.js\""
],
"src/**/*.css": [
"npx prettier --parser=css --write \"src/**/*.css\"",
"git add"
]
}
}