-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.61 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.61 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
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
114
{
"name": "astern",
"version": "1.0.0",
"description": "A fast and modern mobro theme",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:coverage:publish": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"build": "run-s clean build:app && run-p sdk:path assets:copy && run-s assets:bundle",
"build:app": "parcel build src/index.pug --out-dir ./theme",
"start": "parcel src/index.pug --open --out-dir ./.www",
"start:disconnected": "NODE_ENV=disconnected parcel src/index.pug --open --out-dir ./.www",
"sdk:path": "ts-node --skip-project buildScripts/addSdk.ts",
"assets:copy": "ts-node --skip-project buildScripts/addMobroAssets.ts",
"assets:bundle": "ts-node --skip-project buildScripts/bundleMobroAssets.ts",
"fetch:screenshots": "ts-node --skip-project buildScripts/fetchScreenshots.ts",
"fetch:releasenotes": "ts-node --skip-project buildScripts/fetchReleaseNotes.ts",
"clean": "run-p clean:theme clean:cache clean:devbuild",
"clean:theme": "del-cli theme",
"clean:cache": "del-cli .cache",
"clean:devbuild": "del-cli .www",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"chromatic": "npx chromatic --project-token n7wizm09peq"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.12.10",
"@storybook/addon-a11y": "6.1.14",
"@storybook/addon-actions": "6.1.14",
"@storybook/addon-docs": "6.1.14",
"@storybook/addon-essentials": "6.1.14",
"@storybook/addon-links": "6.1.14",
"@storybook/react": "6.1.14",
"@testing-library/jest-dom": "5.11.8",
"@testing-library/react": "11.2.3",
"@types/adm-zip": "0.4.33",
"@types/bytes": "3.1.0",
"@types/d3-array": "2.8.0",
"@types/fs-extra": "9.0.6",
"@types/jest": "26.0.20",
"@types/lodash.debounce": "4.0.6",
"@types/node": "14.14.20",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/react-redux": "7.1.15",
"@types/redux": "3.6.0",
"@types/styled-components": "5.1.7",
"@types/testing-library__jest-dom": "5.9.5",
"@types/testing-library__react": "10.2.0",
"adm-zip": "0.5.1",
"babel-loader": "8.2.2",
"chalk": "4.1.0",
"chromatic": "5.6.0",
"core-js": "3.8.2",
"coveralls": "3.1.0",
"del-cli": "3.0.1",
"fs-extra": "9.0.1",
"graphql": "15.4.0",
"graphql-request": "3.4.0",
"husky": "4.3.7",
"jest": "26.6.3",
"node-fetch": "2.6.1",
"npm-run-all": "4.1.5",
"parcel-bundler": "1.12.4",
"parcel-plugin-bundle-visualiser": "1.2.0",
"parcel-plugin-custom-dist-structure": "1.1.16",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"pug": "3.0.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"storybook-addon-performance": "0.13.0",
"ts-jest": "26.4.4",
"ts-node": "9.1.1",
"typescript": "4.1.3"
},
"dependencies": {
"@reduxjs/toolkit": "1.4.0",
"@visx/curve": "1.0.0",
"@visx/responsive": "1.3.0",
"@visx/scale": "1.4.0",
"@visx/shape": "1.4.0",
"bytes": "3.1.0",
"d3-array": "2.9.1",
"immer": "8.0.0",
"lodash.debounce": "4.0.8",
"preact": "10.5.9",
"react-redux": "7.2.2",
"redux": "4.0.5",
"regenerator-runtime": "0.13.7",
"styled-components": "5.2.1"
},
"alias": {
"react": "preact/compat",
"react-dom/test-utils": "preact/test-utils",
"react-dom": "preact/compat"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"customDistStructure": {
"config": {
"astern": [
".woff2",
".js",
"index.html"
]
}
}
}