This repository has been archived by the owner on May 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 3.29 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "pigmice_scouting_frontend",
"version": "0.0.0",
"dependencies": {
"idb-keyval": "3.1.0",
"linkstate": "1.1.1",
"preact": "8.3.1",
"preact-router": "2.6.1"
},
"devDependencies": {
"@babel/core": "7.1.0",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-transform-react-jsx": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-typescript": "7.1.0",
"@types/eslint": "4.16.3",
"@types/jest": "23.3.2",
"autoprefixer": "9.1.5",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.6.0",
"chalk": "2.4.1",
"connect-history-api-fallback": "1.5.0",
"cross-env": "5.2.0",
"danger": "4.0.1",
"eslint": "5.6.0",
"eslint-formatter-pretty": "1.3.0",
"eslint-import-resolver-typescript": "1.0.2",
"eslint-plugin-array-func": "3.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "21.22.1",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-react": "7.11.1",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-typescript": "0.12.0",
"eslint-plugin-unicorn": "6.0.1",
"identity-obj-proxy": "3.0.0",
"jest": "23.6.0",
"koa-connect": "2.0.1",
"lighthouse": "3.1.1",
"postcss-calc": "6.0.1",
"postcss-color-function": "4.0.1",
"postcss-color-gray": "4.1.0",
"postcss-css-variables": "0.9.0",
"postcss-media-minmax": "4.0.0",
"postcss-nesting": "7.0.0",
"prettier-eslint-cli": "4.7.1",
"rollup": "0.66.2",
"rollup-plugin-babel": "4.0.3",
"rollup-plugin-copy-assets": "1.0.0",
"rollup-plugin-node-resolve": "3.4.0",
"rollup-plugin-postcss": "1.6.2",
"rollup-plugin-serve": "0.6.0",
"rollup-plugin-terser": "3.0.0",
"rucksack-css": "1.0.2",
"stylelint": "9.5.0",
"stylelint-config-prettier": "4.0.0",
"stylelint-config-rational-order": "0.0.2",
"stylelint-config-recommended": "2.1.0",
"sugarss": "2.0.0",
"typescript": "3.0.3",
"typescript-eslint-parser": "18.0.0"
},
"license": "MIT",
"prettier": {
"semi": false,
"singleQuote": true
},
"private": true,
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleDirectories": [
"node_modules",
"src"
],
"transform": {
"\\.tsx$": "./jest-transformer",
"\\.ts$": "./jest-transformer"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy"
}
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"scripts": {
"start": "cross-env NODE_ENV=development rollup -w -c rollup.config.js",
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js",
"type": "tsc --noEmit --pretty",
"type:watch": "tsc --noEmit --pretty --watch",
"lint:js": "eslint . --ignore-path .gitignore --ext .js,.ts,.tsx --format=pretty --fix",
"lint:css": "prettier --write 'src/**.css' && stylelint 'src/**/*.css' --fix",
"lint": "yarn lint:js && yarn lint:css",
"fix:js": "prettier-eslint --write 'src/**/*.ts' 'src/**/*.tsx'",
"fix": "yarn fix:js && yarn lint:css",
"test": "jest",
"test:watch": "jest --watch"
},
"browserslist": [
"last 2 versions"
]
}