This repository has been archived by the owner on Mar 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.67 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
{
"name": "@socialtables/st-ui-toolkit",
"version": "2.1.2",
"description": "Configurable React Components used at Social Tables",
"author": {
"name": "Social Tables",
"url": "http://www.socialtables.com"
},
"repository": {
"type": "git",
"url": "git://github.com/socialtables/st-ui-toolkit.git"
},
"main": "lib/index.js",
"keywords": [
"browser",
"react",
"ux",
"components",
"widget",
"javascript",
"react-component"
],
"peerDependencies": {
"react": ">=0.16.8",
"react-dom": ">=0.16.8"
},
"scripts": {
"build": "BABEL_ENV=production babel --out-dir='lib' --ignore='__tests__/*' src",
"pretest": "npm run lint",
"test": "npm run test:js",
"test:js": "BABEL_ENV=test BABEL_JEST_STAGE=2 ./node_modules/.bin/jest",
"test:watch": "npm run test:js -- --watch",
"lint": "npm run lint:eslint",
"lint:eslint": "./node_modules/.bin/eslint ./",
"alex": "./node_modules/.bin/alex README.md",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@socialtables/react-loader": "^3.0.1",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"alex": "^1.5.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^2.9.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-mocha": "^2.2.0",
"eslint-plugin-react": "^4.3.0",
"jest-cli": "^12.0.2",
"prism-react-renderer": "^1.0.2",
"react": "^16.13.1",
"react-addons-test-utils": ">=15.0.2 <15.5",
"react-dom": "^16.13.1",
"sinon": "^1.17.4"
},
"jest": {
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/color",
"<rootDir>/node_modules/underscore",
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/sinon",
"<rootDir>/src"
],
"testRunner": "jasmine1",
"testDirectoryName": "src/__tests__/tests",
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"setupTestFrameworkScriptFile": "<rootDir>/src/__tests__/utils/setupTestFrameworkScriptFile.js"
},
"license": "Apache-2.0",
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.8.3",
"color": "^0.11.1",
"exenv": "^1.2.1",
"filter-react-props": "0.0.4",
"lodash.find": "^4.2.0",
"prop-types": "^15.7.2",
"radium": "^0.26.0"
}
}