-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
96 lines (96 loc) · 2.8 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
{
"name": "nicosapo",
"version": "1.0.0",
"description": "nicosapo - niconama supporter",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js --display-error-details",
"watch": "NODE_ENV=development webpack --config webpack.config.js --display-error-details --watch",
"debug": "NODE_ENV=development webpack-dev-server --mode=development --hot",
"test": "jest",
"release": "webpack --config webpack.config.release.js --display-error-details --optimize-minimize --watch",
"watch-test": "mocha -r mock-local-storage --compilers js:babel-core/register --watch"
},
"repository": "git+https://github.com/yurafuca/nicosapo.git",
"author": "yurafuca <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/yurafuca/nicosapo/issues"
},
"homepage": "https://github.com/yurafuca/nicosapo#readme",
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
},
"dependencies": {
"axios": "^0.18.0",
"blacklist": "^1.1.4",
"bootstrap-toggle": "^2.2.2",
"deep-object-diff": "^1.1.0",
"jquery": "^3.3.1",
"moment": "^2.24.0",
"react": "^16.8.4",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.8.4",
"rxjs": "^6.4.0",
"scrollmonitor": "^1.2.4",
"store": "^2.0.12",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/chrome": "0.0.81",
"@types/jest": "^24.0.11",
"@types/rx": "^4.1.1",
"@types/store": "^2.0.1",
"babel-core": "^6.26.3",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.2.0",
"copy-webpack-plugin": "^5.0.0",
"css-loader": "^2.1.1",
"eslint": "^5.15.1",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"jest": "^24.5.0",
"jsdom": "^13.2.0",
"jshint": "^2.10.1",
"mocha": "^6.0.2",
"mock-local-storage": "^1.1.8",
"node-sass": "^4.11.0",
"prettier": "^1.16.4",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"regexpu-core": "^4.5.3",
"sass-loader": "^7.1.0",
"sloc": "^0.2.1",
"style-loader": "^0.23.1",
"to-integer": "^1.0.1",
"ts-jest": "^24.0.0",
"ts-loader": "^5.3.3",
"typescript": "^3.3.3333",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"volta": {
"node": "11.15.0"
}
}