-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
{
"name": "calendarick",
"version": "1.0.0",
"description": "",
"scripts": {
"start:ui": "parcel --port 1234 --out-dir dist/ui ui/index.html",
"start:docs": "parcel --port 1235 --out-dir dist/docs docs-ui/index.html",
"build:docs": "parcel build --public-url https://vladimirze.github.io/calendarick/ --out-dir docs docs-ui/index.html",
"test": "jest",
"test:watch": "jest --watch",
"cypress": "cypress open",
"build:lib": "parcel build ./src/index.js --out-dir lib --out-file calendarick"
},
"author": "",
"license": "MIT",
"dependencies": {
"clsx": "^1.0.4"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/preset-react": "^7.10.4",
"@mdx-js/parcel-plugin-mdx": "^1.6.14",
"@mdx-js/react": "^2.0.0-next.6",
"babel-jest": "24.9.0",
"babel-preset-env": "^1.7.0",
"cypress": "3.4.1",
"jest": "24.9.0",
"parcel": "^1.12.4",
"prism-react-renderer": "^1.1.1",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.9.0",
"react-router-dom": "^5.1.2",
"sass": "^1.22.10"
},
"peerDependencies": {
"react": "^16.10.2",
"react-dom": "^16.9.0"
},
"alias": {
"calendarick": "./src"
}
}