-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.52 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
{
"name": "MobileManagerWeb",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "npm run build-css && react-scripts-ts start && less-watch-compiler",
"build": "react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"build-css": "lessc ./src/stylesheets/main.less ./public/css/main.css",
"tslint": "tslint --project tsconfig.json -e \"./**/test/**\" -e \"./node_modules/**\" \"./**/*.ts?(x)\""
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@types/react-modal": "^3.2.1",
"@types/react-router": "^4.0.32",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.2.0",
"immutable": "^3.8.2",
"less": "^3.10.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-modal": "^3.6.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-scripts-ts": "3.1.0",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.7",
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.3.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/classnames": "^2.2.6",
"@types/jest": "^23.3.5",
"@types/node": "^10.11.7",
"@types/react": "^16.4.16",
"@types/react-dom": "^16.0.9",
"@types/react-redux": "^6.0.9",
"@types/react-router-dom": "^4.3.1",
"babel-loader": "^8.0.5",
"tslint-react": "^3.6.0",
"typescript": "^3.1.3"
}
}