-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·128 lines (128 loc) · 3.55 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "react-typescript-boilerplate",
"version": "1.0.0",
"title": "React Typescript Boilerplate",
"description": "A starter kit for building a standard navigation-style app with React and Webpack.",
"main": "dist/app.bundle.js",
"identifier": "ch.w3tec.app",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/w3tecch/react-typescript-boilerplate.git"
},
"author": "w3tec <[email protected]> (http://w3tec.ch/)",
"contributors": [
{
"name": "Gery Hirschfeld <[email protected]> (https://github.com/hirsch88)"
},
{
"name": "David Weber <[email protected]> (https://github.com/dweber019)"
}
],
"bugs": {
"url": "https://github.com/w3tecch/aurelia-typescript-boilerplate/issues"
},
"homepage": "https://github.com/w3tecch/aurelia-typescript-boilerplate#readme",
"license": "MIT",
"keywords": [
"react",
"skeleton",
"boilterplate",
"typescript",
"webpack"
],
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"start": "nps",
"test": "nps test",
"install:dev": "npm i && npm run install:typings",
"install:typings": "./node_modules/.bin/typings i"
},
"jest": {
"testURL": "http://localhost",
"modulePaths": [
"<rootDir>/src/app",
"<rootDir>/node_modules"
],
"moduleFileExtensions": [
"js",
"json",
"ts",
"tsx"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/test/transforms/file-transform.ts"
},
"testRegex": "\\.test\\.(ts|js)x?$",
"setupFiles": [
"<rootDir>/test/jest-pretest.ts"
],
"testEnvironment": "jsdom",
"moduleNameMapper": {
"\\.(css|jpg|png|svg)$": "<rootDir>/test/transforms/empty.ts"
}
},
"devDependencies": {
"@types/jest": "^19.2.2",
"@types/lodash": "^4.14.62",
"@types/node": "^7.0.12",
"@types/react": "^15.0.23",
"@types/webpack": "^2.2.14",
"autoprefixer": "^6.7.7",
"awesome-typescript-loader": "^3.1.2",
"case-sensitive-paths-webpack-plugin": "^2.0.0",
"chalk": "^1.1.3",
"compression-webpack-plugin": "^0.4.0",
"copy-webpack-plugin": "^4.0.1",
"cordova": "^6.5.0",
"cross-env": "^4.0.0",
"css-loader": "^0.28.0",
"expose-loader": "^0.7.3",
"extract-text-webpack-plugin": "^2.1.0",
"favicons-webpack-plugin": "^0.0.7",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"http-server": "^0.9.0",
"img-loader": "^2.0.0",
"istanbul-instrumenter-loader": "^2.0.0",
"jasmine-core": "^2.5.2",
"jest": "^19.0.2",
"json-loader": "^0.5.4",
"loader-utils": "^1.1.0",
"ncp": "^2.0.0",
"node-sass": "^4.5.2",
"nps": "^5.0.5",
"nps-utils": "^1.2.0",
"postcss-loader": "^1.3.3",
"protractor": "^5.1.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"ts-jest": "^19.0.8",
"ts-node": "^3.0.2",
"tslib": "^1.6.1",
"tslint": "^5.1.0",
"tslint-loader": "^3.5.2",
"typescript": "^2.2.2",
"typings": "^2.1.1",
"url-loader": "^0.5.8",
"wait-on": "^2.0.2",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2",
"webpack-notifier": "^1.5.0"
},
"dependencies": {
"bluebird": "^3.5.0",
"bootstrap-sass": "^3.3.7",
"font-awesome": "^4.7.0",
"i18next": "^8.0.0",
"i18next-browser-languagedetector": "^1.0.1",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.2.1",
"moment": "^2.18.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-router-dom": "^4.1.1"
}
}