-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.87 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
{
"private": true,
"name": "view-intent-native",
"version": "0.1.0",
"description": "",
"main": "lib/main",
"types": "@types/main",
"scripts": {
"link": "",
"test": "jest --no-cache",
"dev": "npm run clean && (tsc -w | webpack --define process.env.NODE_ENV=development --config=webpack.dev.js -w --progress --color)",
"build": "npm run clean && tsc && webpack --define process.env.NODE_ENV=development --config=webpack.dev.js --progress --color && webpack --define process.env.NODE_ENV=production --config=webpack.prod.js --progress --color && exit 0",
"clean": "rm -rf ./lib/* ./dist/* ./@types/* && exit 0",
"clean-node": "rm -rf ./node_modules && rm -rf package-lock.json exit 0",
"commit": "git add --all && git commit -a -m \"release\" && exit 0",
"deploy": "git clean -i && npm version patch && npm publish && exit 0"
},
"babel": {
"presets": [
"env",
"react"
]
},
"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-native.git"
},
"author": {
"name": "Dan C Castro"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dan2dev/view-intent-native/issues"
},
"homepage": "https://github.com/dan2dev/view-intent-native#readme",
"devDependencies": {
"@types/jest": "^22.1.0",
"@types/jsx-chai": "^3.0.16",
"@types/lodash": "^4.14.96",
"@types/node": "^9.3.0",
"awesome-typescript-loader": "^3.4.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.1.0",
"babel-preset-env": "^1.6.1",
"css-loader": "^0.28.9",
"eslint": "^4.16.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"iisexpress-proxy": "^1.3.0",
"jest": "^22.1.4",
"node-sass": "^4.7.2",
"regenerator-runtime": "^0.11.1",
"sass-loader": "^6.0.6",
"source-map-loader": "^0.2.3",
"style-loader": "^0.19.1",
"ts-jest": "^22.0.1",
"typescript": "^2.6.2",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.10.0",
"webpack-livereload-plugin": "^1.0.0",
"webpack-merge": "^4.1.1"
},
"dependencies": {
"@types/react": "^16.0.35",
"@types/react-dom": "^16.0.3",
"@types/window-or-global": "^1.0.0",
"@types/jquery": "^3.3.0",
"@types/react-addons-css-transition-group": "^15.0.3",
"ajax-worker": "^1.8.7",
"deep-equal": "^1.0.1",
"lodash": "^4.17.4",
"mobx": "^3.4.1",
"react": "^16.2.0",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "^16.2.0",
"uniqid": "^4.1.1",
"utility-collection": "^1.8.24"
}
}