-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.73 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
{
"name": "@swfsoft/swf-theme",
"version": "2.1.2",
"description": "Theming system for swf react.js projects",
"author": "swiftforge",
"license": "MIT",
"repository": "swiftforge/swf-theme",
"main": "dist/index.js",
"module": "dist/index.es.js",
"scripts": {
"test": "jest --colors --passWithNoTests",
"test:watch": "jest --watch --colors --passWithNoTests",
"test:watchAll": "jest --watchAll --colors --passWithNoTests",
"storybook": "start-storybook",
"build": "tsc",
"clean": "echo 'Removing dist...' && rm -rf dist",
"build:watch": "rollup -c -w"
},
"bugs": {
"url": "https://github.com/swiftforge/swf-theme/issues"
},
"types": "dist/index.d.ts",
"peerDependencies": {
"props-types": "^15.5.4",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"homepage": "https://github.com/swiftforge/swf-theme",
"dependencies": {
"ansi-colors": "^4.1.1",
"babel-jest": "^26.0.1",
"commander": "^5.1.0",
"ejs": "^3.1.3",
"fs-jetpack": "^2.4.0",
"inquirer": "^7.1.0",
"lodash": "^4.17.20",
"ora": "^4.0.4",
"styled-components": "^5.2.1",
"styled-reset": "^4.3.4",
"tinycolor2": "^1.4.2",
"tslib": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/helpers": "^7.10.1",
"@babel/plugin-external-helpers": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/preset-stage-0": "^7.8.3",
"@babel/preset-typescript": "^7.10.1",
"@rollup/plugin-babel": "^5.0.3",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"@rollup/plugin-typescript": "^2.1.0",
"@rollup/plugin-url": "^5.0.1",
"@storybook/react": "^5.2.8",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.2.3",
"@types/lodash": "^4.14.167",
"@types/node": "^14.0.12",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-test-renderer": "^16.9.1",
"@types/tinycolor2": "^1.4.2",
"babel-loader": "^8.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint": "^5.16.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^26.0.1",
"jest-css-modules-transform": "^4.0.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "^3.4.1",
"react-test-renderer": "^16.13.1",
"rollup": "^1.32.1",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-postcss": "^2.9.0",
"rollup-plugin-scss": "^2.5.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^26.1.0",
"typescript": "^4.1.3",
"webpack-cli": "^3.3.11"
},
"files": [
"dist"
]
}