-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.37 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.37 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
{
"name": "react-punchcard",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"url": "https://github.com/ablamunits/react-punchcard"
},
"scripts": {
"test": "jest",
"build": "rm -rf dist && tsc -p . && npm run build-style",
"build-demo": "rm -rf ./demo/build && webpack && npm run build-demo-style",
"build-style": "node-sass --output-style compressed src/style.scss > dist/style.css",
"build-demo-style": "node-sass src/style.scss demo/build/style.css",
"watch-style": "node-sass --watch src/style.scss demo/build/style.css",
"start": "webpack-dev-server --open"
},
"author": "",
"license": "ISC",
"peerDependencies": {
"react": "^16.4.0",
"react-dom": "^16.4.0"
},
"devDependencies": {
"@types/classnames": "^2.2.4",
"@types/jest": "^23.0.0",
"@types/react": "^16.3.17",
"@types/react-dom": "^16.0.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.1.0",
"node-sass": "^4.9.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"ts-jest": "^22.4.6",
"ts-loader": "^4.4.1",
"tslint": "^5.10.0",
"tslint-react": "^3.6.0",
"typescript": "^2.9.1",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3",
"webpack-command": "^0.2.1",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"classnames": "^2.2.6"
}
}