-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.27 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
{
"name": "@128technology/ui",
"version": "0.10.3",
"description": "128 Technology UI component library.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean:dist && webpack",
"styleguide": "styleguidist server",
"styleguide:build": "npm run clean:styleguide && styleguidist build",
"lint:style": "stylelint src/**/*.scss",
"lint": "npm run lint:style",
"test": "mochapack --require ./testSetup ./src/**/*-test.ts* ./resetDom",
"validate": "npm test && npm run lint",
"prepublishOnly": "npm run build",
"clean:dist": "rimraf dist/",
"clean:styleguide": "rimraf styleguide/",
"clean": "npm run clean:dist && npm run clean:styleguide",
"format": "prettier --print-width 120 --single-quote --trailing-comma none --write \"src/components/**/*.{ts,tsx}\""
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "ssh://git@github.com/128technology/128-ui.git"
},
"author": "128 Technology",
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@material-ui/core": "^4.5.0",
"@types/chai": "^4.1.7",
"@types/classnames": "^2.2.8",
"@types/enzyme": "^3.9.3",
"@types/lodash": "^4.14.133",
"@types/mocha": "^5.2.7",
"@types/moment": "^2.13.0",
"@types/react": "^16.4.14",
"@types/react-virtualized": "^9.21.2",
"@types/sinon": "^7.0.12",
"@types/tether": "^1.4.4",
"babel-eslint": "^7.2.1",
"babel-loader": "^8.0.2",
"chai": "^4.0.0-canary.1",
"css-loader": "^1.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.4.0",
"eslint": "^4.7.2",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^2.0.0",
"ignore-styles": "^5.0.1",
"jsdom": "^11.5.1",
"mocha": "^3.3.0",
"mochapack": "^1.1.1",
"node-sass": "^4.5.2",
"prettier": "^1.7.2",
"react": "^16.3.0",
"react-docgen": "^2.21.0",
"react-docgen-typescript": "^1.12.4",
"react-dom": "^16.3.0",
"react-input-autosize": "^1.1.0",
"react-styleguidist": "^7.3.8",
"resolve-url-loader": "^3.0.0",
"rimraf": "^2.6.1",
"sass-loader": "^7.1.0",
"sinon": "^2.2.0",
"style-loader": "^0.23.0",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"ts-loader": "^6.0.2",
"typescript": "^3.5.1",
"uglifyjs-webpack-plugin": "^2.0.0",
"url-loader": "^1.1.1",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.7.2"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0",
"@material-ui/core": "^4.1.2"
},
"dependencies": {
"@128technology/mui-virtualized-table": "^3.0.0-7",
"@types/react-select": "^2.0.6",
"classnames": "^2.2.5",
"moment": "^2.22.2",
"prop-types": "^15.5.8",
"react-select": "^2.0.0",
"react-tether": "^2.0.3",
"react-virtualized": "^9.20.1"
}
}