This repository was archived by the owner on Oct 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.13 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
112
113
114
{
"private": false,
"name": "view-intent-mobx",
"version": "0.2.0",
"description": "",
"main": "lib/main",
"types": "@types/main",
"scripts": {
"link": "",
"test": "jest --no-cache",
"dev": "npm-run-all --parallel tsc-w && exit 0",
"tsc-w": "tsc -w",
"webpack-dev": "webpack --config=webpack.dev.js --progress --color",
"webpack-prod": "webpack --config=webpack.prod.js --progress --color",
"webpack-dev-w": "webpack -w --config=webpack.dev.js --progress --color",
"webpack-prod-w": "webpack -w --config=webpack.prod.js --progress --color",
"build": "yarn run clean && tsc && yarn run webpack-dev && yarn run webpack-prod && exit 0",
"clean": "rimraf lib/* dist/* @types/* && exit 0",
"clean-node": "rimraf package-lock.json node_modules/* && exit 0"
},
"babel": {
"presets": [
"@babel/preset-env",
"react",
"es2015"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest",
"^.+\\.jsx?$": "babel-jest"
},
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dan2dev/view-intent-mobx.git"
},
"author": {
"name": "Dan C Castro"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dan2dev/view-intent-mobx/issues"
},
"homepage": "https://github.com/dan2dev/view-intent-mobx#readme",
"devDependencies": {
"@babel/core": "^7.0.0-beta.42",
"@types/jest": "^22.2.2",
"awesome-typescript-loader": "^4.0.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"cssnano": "^3.10.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^3.1.0",
"iisexpress-proxy": "^1.3.0",
"jest": "^22.4.3",
"node-sass": "^4.8.3",
"optimize-css-assets-webpack-plugin": "^4.0.0",
"regenerator-runtime": "^0.11.1",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.7",
"source-map-loader": "^0.2.3",
"style-loader": "^0.20.3",
"ts-jest": "^22.4.2",
"typescript": "^2.8.1",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.4.1",
"webpack-livereload-plugin": "^2.1.1",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"@babel/preset-env": "^7.0.0-beta.42",
"@types/deep-equal": "^1.0.1",
"@types/jquery": "^3.3.1",
"@types/jsx-chai": "^3.0.16",
"@types/lodash": "^4.14.106",
"@types/node": "^9.6.1",
"@types/react": "^16.1.0",
"@types/react-addons-css-transition-group": "^15.0.4",
"@types/react-dom": "^16.0.4",
"@types/uniqid": "^4.1.2",
"@types/window-or-global": "^1.0.0",
"ajax-worker": "^1.8.10",
"babel-loader": "^7.1.4",
"class-transformer": "^0.1.9",
"deep-equal": "^1.0.1",
"raw-loader": "^0.5.1",
"react-addons-css-transition-group": "^15.6.2",
"serializer.ts": "^0.0.12",
"uniqid": "^4.1.1",
"utility-collection": "^2.1.1"
},
"peerDependencies": {
"mobx": "^4.1.1"
}
}