This repository was archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.69 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.69 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
{
"name": "vott-react",
"version": "0.2.12",
"author": "VOTT Team vott@microsoft.com>",
"description": "Reusable React components originally designed for VOTT app",
"license": "MIT",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"engines": {
"node": ">=10.14.2",
"npm": ">=6.4.1"
},
"repository": {
"type": "git",
"url": "http://github.com/Microsoft/vott-react"
},
"dependencies": {
"babel-plugin-react-docgen": "^2.0.2",
"prop-types": "^15.6.2",
"react-jsonschema-form": "^1.2.0",
"react-tag-input": "^6.1.0",
"reactstrap": "^6.5.0"
},
"peerDependencies": {
"react": ">=16.7.0",
"react-dom": ">=16.7.0"
},
"resolutions": {
"@storybook/react/**/react-docgen": "3.0.0-beta9"
},
"files": [
"dist/lib",
"dist/css"
],
"scripts": {
"start": "react-scripts start",
"lint": "tslint 'src/**/*.ts*'",
"lintfix": "tslint 'src/**/*.ts*' --fix",
"compile": "tsc",
"pretest": "npm run lint",
"test": "react-scripts test --env=jsdom --silent",
"test:ci": "cross-env CI=true npm run test",
"test:coverage": "npm run test -- --coverage",
"eject": "react-scripts eject",
"clean": "rm -rf dist",
"prebuild": "npm run lint",
"build": "npm run clean && npm run build:js && npm run build:css",
"build:js": "tsc -p tsconfig.prod.json",
"build:css": "node-sass src/ -r -o src/",
"postbuild:css": "copyfiles src/components/**/*.css dist/css -f",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@storybook/addon-actions": "^4.1.11",
"@storybook/addon-info": "^4.1.11",
"@storybook/addon-links": "^4.1.11",
"@storybook/react": "^4.1.11",
"@types/enzyme": "^3.1.15",
"@types/jest": "^23.3.13",
"@types/node": "10.12.18",
"@types/react": "^16.7.6",
"@types/react-dom": "^16.0.9",
"@types/react-jsonschema-form": "^1.0.13",
"@types/reactstrap": "^6.4.3",
"copyfiles": "^2.1.0",
"cross-env": "^5.2.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"jest-enzyme": "^7.0.1",
"node-sass": "^4.11.0",
"react-docgen-typescript-loader": "^3.0.1",
"react-scripts": "2.1.3",
"storybook-addon-props": "^3.0.4",
"tslint": "^5.12.1",
"typescript": "3.2.4"
}
}