-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.64 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
{
"name": "interactive.2018.graduation-issue",
"scripts": {
"start": "cross-env NODE_ENV=development parcel src/index.html",
"build": "cross-env NODE_ENV=production parcel build src/index.html --public-url /2018/graduation-issue",
"build:netlify": "cross-env NODE_ENV=production parcel build src/index.html --public-url /",
"precommit": "lint-staged",
"postmerge": "yarnhook",
"postcheckout": "yarnhook",
"postrewrite": "yarnhook"
},
"prettier": {
"overrides": [
{
"files": "*.{js,ts,tsx}",
"options": {
"singleQuote": true,
"trailingComma": "es5"
}
}
]
},
"lint-staged": {
"*.{js,ts,tsx,json,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@types/node": "10.3.1",
"@types/react": "16.3.16",
"@types/react-dom": "16.0.6",
"@types/webpack-env": "1.13.6",
"autoprefixer": "8.6.0",
"babel-preset-react-app": "3.1.1",
"glamor": "2.20.40",
"glamorous": "4.13.1",
"parcel-bundler": "1.8.1",
"parcel-plugin-typescript": "0.7.1",
"prettier": "^1.13.5",
"react": "16.4.0",
"react-dom": "16.4.0",
"tslint": "5.10.0",
"tslint-react": "3.6.0",
"typescript": "2.9.1"
},
"postcss": {
"modules": false,
"plugins": {
"autoprefixer": {
"browsers": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 9"
],
"flexbox": "no-2009"
}
}
},
"devDependencies": {
"cross-env": "5.1.6",
"husky": "^0.14.0",
"lint-staged": "^7.1.3",
"node-sass": "^4.9.0",
"yarnhook": "^0.2.0"
}
}