-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.22 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
{
"name": "@coderan/ui",
"version": "0.2.0",
"description": "Beautiful and component-rich UI library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"scripts": {
"build:css": "gulp",
"build:js": "tsc -p tsconfig-build.json",
"build": "rimraf dist && npm run build:js && npm run build:css",
"test": "jest --config=jest.config.json",
"test-coverage": "jest --config=jest.config.json --collectCoverage",
"dev": "webpack serve --config www/webpack.config.js"
},
"author": "Eran Machiels",
"license": "ISC",
"repository": "https://github.com/coderan-io/ui",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.8",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"babel-loader": "^8.2.2",
"css-loader": "^5.1.0",
"dotenv": "^8.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.21.0",
"eslint-plugin-react": "^7.22.0",
"file-loader": "^6.2.0",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.1.0",
"gulp-typescript": "^6.0.0-alpha.1",
"html-webpack-plugin": "^5.2.0",
"jest": "^26.6.3",
"react-dom": "^16.14.0",
"rimraf": "^3.0.2",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"typescript": "^4.2.2",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-manifest-plugin": "^3.0.0"
},
"dependencies": {
"@popperjs/core": "^2.8.6",
"bootstrap": "^4.6.0",
"clsx": "^1.1.1",
"framer-motion": "^3.7.0",
"prop-types": "^15.7.2",
"react": "^16.14.0"
},
"files": [
"dist"
]
}