This repository has been archived by the owner on Oct 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.51 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
{
"name": "@acrylic/acrylic",
"version": "0.1.2",
"description": "A React component library",
"main": "dist/acrylic.js",
"repository": "https://github.com/vincentfiestada/acrylic.git",
"author": {
"name": "Vincent Fiestada",
"email": "[email protected]"
},
"license": "MIT",
"private": false,
"scripts": {
"format": "node node_modules/prettier/bin-prettier.js --write **/*.{js,jsx,ts,tsx,json,css,scss}",
"lint": "node node_modules/prettier/bin-prettier.js --list-different **/*.{js,jsx,ts,tsx,json,css,scss}",
"typedoc": "node node_modules/typedoc/bin/typedoc --excludePrivate lib/acrylic.tsx --out docs/dist/wiki --readme none",
"build:dev": "node node_modules/parcel-bundler/bin/cli.js -d docs/dist docs/src/*.html docs/src/**/*.{svg,png,webp,jpg,md}",
"build:docs": "node node_modules/parcel-bundler/bin/cli.js build -d docs/dist docs/src/*.html docs/src/**/*.{svg,png,webp,jpg,md}",
"build": "node node_modules/typescript/bin/tsc -p tsconfig.json && node node_modules/parcel-bundler/bin/cli.js build -d dist/themes lib/themes/*.scss",
"test": "node node_modules/jest/bin/jest.js --config jest.config.js --coverage",
"test:junit": "yarn test --reporters=default --reporters=jest-junit",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint"
},
"files": [
"dist",
"lib",
"package.json",
"tsconfig.json",
"LICENSE",
"README.md",
"NOTICE.md"
],
"husky": {
"hooks": {
"pre-commit": "yarn format",
"commit-msg": "npx commitlint -e"
}
},
"dependencies": {
"classnames": "^2.2.6",
"lodash": "^4.17.11",
"normalize.css": "8.0",
"parcel-bundler": "^1.12.4",
"react": "16.7.0-alpha.2",
"react-dom": "16.7.0-alpha.2",
"react-router-dom": "4.3.1",
"sass": "1.15.2",
"typescript": "3.2.2"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^7.5.0",
"@types/classnames": "^2.2.6",
"@types/enzyme": "^3.1.15",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/enzyme-to-json": "1.5.2",
"@types/jest": "^23.3.11",
"@types/lodash": "^4.14.120",
"@types/marked": "^0.6.0",
"@types/react": "^16.7.17",
"@types/react-dom": "^16.0.11",
"@types/react-router-dom": "^4.3.1",
"enzyme": "3.8.0",
"enzyme-adapter-react-16": "1.7.1",
"enzyme-to-json": "3.3.5",
"husky": "^1.3.0",
"jest": "24",
"jest-junit": "7",
"marked": "^0.7.0",
"prettier": "1.15.3",
"react-live": "^1.12.0",
"ts-jest": "24",
"typedoc": "^0.15.0"
}
}