-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·97 lines (97 loc) · 3.05 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
96
97
{
"name": "content-ui",
"version": "0.0.5",
"description": "React version of static-content",
"main": "public/index.js",
"typings": "public/index.d.ts",
"scripts": {
"build": "npm run clean && webpack",
"build:prod": "npm run build -- -p",
"clean": "rimraf public dist",
"compile": "npm run clean && tsc",
"postInstall": "npm run compile",
"test": "NODE_ENV=test jest --no-cache",
"lint-ts": "tslint 'app/*.tsx' 'app/**/*.tsx' 'app/*.ts' 'app/**/*.ts'",
"start:dev": "npm run clean && webpack-dev-server --hot --inline --port 8081"
},
"reactHero": {
"serverUrl": "http://localhost/",
"APIUrl": "http://localhost/api/v1/"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:causecode/content-ui.git"
},
"jest": {
"verbose": true,
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testResultsProcessor": "<rootDir>/node_modules/ts-jest/coverageprocessor.js",
"moduleDirectories": [
"node_modules",
"<rootDir>/app"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testRegex": "(/tests/.*-test|\\.(test|spec))\\.(ts|tsx)$",
"setupTestFrameworkScriptFile": "<rootDir>/__mocks__/localStorage.js"
},
"author": "CauseCode Technologies",
"license": "ISC",
"homepage": "https://github.com/causecode/content-ui/blob/master/README.md",
"dependencies": {},
"devDependencies": {
"@types/history": "4.5.1",
"@types/enzyme": "2.8.3",
"@types/react": "15.0.21",
"@types/react-bootstrap": "0.0.50",
"@types/react-dom": "0.14.23",
"axios": "0.12.0",
"babel-jest": "17.0.2",
"babel-polyfill": "6.16.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-3": "6.17.0",
"dompurify": "0.8.4",
"enzyme": "2.6.0",
"es6-promise": "3.2.1",
"extract-text-webpack-plugin": "2.0.0",
"facebook-plugins": "1.0.5",
"history": "4.6.1",
"html-webpack-plugin": "2.19.0",
"jest": "17.0.3",
"jest-cli": "17.0.3",
"radium": "0.18.1",
"react": "15.1.0",
"react-addons-test-utils": "15.2.0",
"react-bootstrap": "0.29.5",
"react-dom": "15.2.0",
"react-fontawesome": "1.1.0",
"react-helmet": "3.2.2",
"react-hero": "git+https://github.com/causecode/react-hero.git#release-1.1.8",
"react-hot-loader": "1.3.1",
"react-input-autosize": "1.1.0",
"react-router": "4.1.1",
"react-router-dom": "4.1.1",
"react-router-redux": "4.0.7",
"react-test-renderer": "15.4.1",
"redux": "3.6.0",
"ts-jest": "17.0.3",
"ts-loader": "1.2.2",
"tslint": "5.1.0",
"tslint-loader": "3.5.3",
"ts-rules": "git+https://github.com/causecode/ts-rules.git#v0.0.1",
"typescript": "2.2.2",
"unroll": "1.2.0",
"webpack": "2.2.1",
"webpack-dev-server": "2.4.1"
}
}