-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.51 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.51 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
{
"name": "react-material-stepper",
"version": "1.0.0",
"description": "React stepper component",
"main": "dist/react-stepper.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc && webpack",
"prettier": "prettier --write src/**/*",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"author": "Artem Puchenkin <apuchenkin@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/apuchenkin/react-stepper.git"
},
"keywords": [
"stepper",
"material-design",
"react",
"typescript"
],
"devDependencies": {
"autoprefixer": "^9.6.0",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^3.0.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"svg-inline-loader": "^0.8.0",
"terser-webpack-plugin": "^1.3.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.5.2",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5"
},
"dependencies": {
"@material/button": "^3.0.0",
"@material/linear-progress": "^3.0.0",
"@material/theme": "^3.0.0",
"@material/typography": "^3.0.0",
"@types/classnames": "^2.2.8",
"@types/react": "^16.8.22",
"@types/react-dom": "^16.8.4",
"classnames": "^2.2.6",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-state-effects": "^1.0.4"
}
}