-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.54 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.54 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
{
"name": "react-starter",
"version": "0.1.0",
"private": false,
"license": "MIT",
"engines": {
"node": ">= 6.9.0",
"npm": ">= 3.0.0"
},
"author": "Daniel Koza <daniel.koza@briisk.co> (https://github.com/dakolech)",
"scripts": {
"precommit": "npm run lint",
"prepush": "npm run test:ci",
"init": "./copyEnvFiles.sh",
"start": "cp src/environments/environment.ts src/environments/index.ts && react-scripts-ts start",
"start:production": "cp src/environments/environment.prod.ts src/environments/index.ts && react-scripts-ts start",
"build:production": "cp src/environments/environment.prod.ts src/environments/index.ts && react-scripts-ts build",
"build:staging": "cp src/environments/environment.stag.ts src/environments/index.ts && react-scripts-ts build",
"build:workspace": "cp src/environments/environment.dev.ts src/environments/index.ts && react-scripts-ts build",
"build:dev": "cp src/environments/environment.ts src/environments/index.ts && react-scripts-ts build",
"test": "react-scripts-ts test --env=jsdom",
"test:ci": "CI=true react-scripts-ts test --env=jsdom",
"lint": "npm run lint:css && npm run lint:ts",
"lint:ts": "tslint \"src/**/*.ts\" && tslint \"src/**/*.tsx\"",
"lint:css": "stylelint 'src/**/*.tsx'",
"eject": "react-scripts-ts eject"
},
"dependencies": {
"font-awesome": "^4.7.0",
"husky": "^0.14.3",
"ramda": "^0.24.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router": "^4.1.2",
"react-router-redux": "^4.0.8",
"redux": "^3.7.2",
"redux-middleware-api-fetch": "^0.1.1",
"redux-saga": "^0.15.6",
"redux-storage": "^4.1.2",
"redux-storage-engine-localstorage": "^1.1.4",
"styled-components": "^2.1.2"
},
"devDependencies": {
"@briisk/tslint-config": "^0.0.2",
"@types/enzyme": "^2.8.6",
"@types/jest": "^20.0.8",
"@types/node": "^8.0.17",
"@types/ramda": "^0.24.5",
"@types/react": "^15.6.0",
"@types/react-dom": "^15.5.1",
"@types/react-redux": "^4.4.47",
"@types/react-router": "^4.0.14",
"@types/react-router-redux": "^5.0.4",
"@types/redux": "^3.6.31",
"@types/redux-mock-store": "0.0.10",
"@types/redux-storage": "^4.0.7",
"enzyme": "^2.9.1",
"jest": "^21.1.0",
"react-scripts-ts": "^2.5.0",
"react-test-renderer": "^15.6.1",
"redux-mock-store": "^1.2.3",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-processor-styled-components": "^0.3.0",
"typescript": "^2.5.1"
}
}