-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.22 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.22 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "react-blocks",
"version": "0.1.0",
"description": "UI library in React",
"keywords": [
"react",
"ui"
],
"license": "MIT",
"main": "lib/index.js",
"typings": "lib/index",
"scripts": {
"build": "npm run build:ts && npm run build:webpack",
"build:ts": "tsc",
"build:webpack": "TS_NODE_PROJECT=.build-config/tsconfig.json webpack --config .build-config/webpack/config.ts --config-name prod",
"build:storybook": "build-storybook -c test/stories",
"dev:ts": "tsc --watch",
"dev:webpack": "TS_NODE_PROJECT=.build-config/tsconfig.json webpack-dev-server --config .build-config/webpack/config.ts --config-name dev",
"dev:storybook": "TS_NODE_PROJECT=.build-config/tsconfig.json start-storybook -p 6006 -c .build-config/storybook",
"test": "npm run test:lint && npm run test:jest",
"test:lint": "npm run test:tslint && npm run test:stylelint",
"test:tslint": "tslint **/*.ts -e '**/*.d.ts' -t verbose",
"test:stylelint": "stylelint **.*.scss --syntax scss",
"test:jest": "jest",
"clear": "clearb"
},
"author": {
"name": "Albert Cuartiella",
"email": "cuarti1992@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuarti/react-blocks.git"
},
"homepage": "https://github.com/cuarti/react-blocks#readme",
"bugs": {
"url": "https://github.com/cuarti/react-blocks/issues"
},
"dependencies": {
"normalize.css": "^8.0.1",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-css-themr": "^2.1.2",
"react-dom": "^16.6.3"
},
"devDependencies": {
"@storybook/addon-actions": "^4.0.7",
"@storybook/addon-links": "^4.0.7",
"@storybook/react": "^4.0.7",
"@types/jest": "^23.3.9",
"@types/node": "^10.12.9",
"@types/react": "^16.7.6",
"@types/react-dom": "^16.0.9",
"@types/react-hot-loader": "^4.1.0",
"@types/react-test-renderer": "^16.0.3",
"@types/webpack": "^4.4.19",
"@types/webpack-notifier": "^1.5.3",
"awesome-typescript-loader": "^5.2.1",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"clearb": "^0.1.0",
"css-loader": "^1.0.1",
"file-loader": "^2.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"node-sass": "^4.9.3",
"react-hot-loader": "^4.3.12",
"react-test-renderer": "^16.6.3",
"sass-loader": "^7.1.0",
"sass-resources-loader": "^2.0.0",
"style-loader": "^0.23.1",
"stylelint": "^9.8.0",
"ts-jest": "^23.10.4",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.8",
"webpack-notifier": "^1.7.0"
},
"jest": {
"globals": {
"ts-jest": {
"useBabelrc": true
}
},
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testPathIgnorePatterns": [
"__snapshots__"
],
"testRegex": "/test/specs/.*/\\w+\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}