-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.59 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
{
"name": "react-typescript-starter-kit",
"version": "1.0.0",
"description": "starter kit which based on rollup/es2015/typescript/react/rx/emotion",
"repository": "git+https://github.com/AndreyUtka/react-typescript-starter-kit.git",
"author": "AndreyUtka <AndreyUtka@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndreyUtka/react-typescript-starter-kit/issues"
},
"homepage": "https://github.com/AndreyUtka/react-typescript-starter-kit#readme",
"engines": {
"node": ">=9.9.0",
"npm": ">=5.8.0"
},
"scripts": {
"clean": "node scripts/helpers/clean.js",
"prebuild": "npm run clean && npm run notify && npm run prebuild:static",
"prebuild:static": "node scripts/vendor.js && npm run build:html",
"start": "BUILD_TYPE='start' npm run dev:start",
"build-dev": "BUILD_TYPE='dev' npm run build:dev",
"build-prod": "BUILD_TYPE='prod' npm run build:prod",
"build:dev": "npm run prebuild && npm run build:ts:dev && npm run rollup:dev && npm run styleguide",
"build:prod": "npm run prebuild && npm run build:ts:prod && npm run rollup:prod && npm run styleguide",
"build:ts:dev": "tsc -p config/tsconfig.dev.json",
"build:ts:prod": "tsc -p config/tsconfig.prod.json",
"build:html": "node scripts/template.js",
"dev:start": "npm run prebuild && npm run build:ts:dev && npm run dev:watch",
"dev:watch": "npm run build:ts:dev -- --watch & npm run rollup:dev -- --watch & npm run server:run",
"rollup:dev": "rollup -c scripts/rollup/rollup.config.dev.js",
"rollup:prod": "node scripts/rollup/rollup.config.prod.js",
"notify": "node scripts/helpers/notify.js",
"styleguide": "npm run lint:ts && npm run format:check",
"lint:ts:watch": "onchange 'src/**/*.{ts,tsx}' -d 5000 -- npm run lint:ts",
"lint:ts": "tslint --project ./tsconfig.json --force --format stylish",
"format:fix": "prettier -l --write '{scripts,config,src}/**/*.{ts,tsx,json,js}' || exit 0",
"format:check": "prettier -l '{scripts,config,src}/**/*.{ts,tsx,json,js}'",
"server:run": "node scripts/helpers/browser.js & nodemon --watch server server/app.js",
"test": "NODE_ENV=test jest --config config/jest.config.js",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage"
},
"dependencies": {
"@types/react": "16.1.0",
"@types/react-dom": "16.0.4",
"@types/react-redux": "5.0.15",
"@types/react-router-dom": "4.2.6",
"@types/redux-actions": "2.2.4",
"chalk": "2.3.2",
"emotion": "9.1.0",
"handlebars": "4.0.11",
"immutable": "4.0.0-rc.9",
"moment": "2.21.0",
"prettier": "1.11.1",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-emotion": "9.1.0",
"react-redux": "5.0.7",
"react-router-dom": "4.2.2",
"redux": "3.7.2",
"redux-rx-middleware": "1.3.0",
"rollup": "0.57.1",
"rollup-plugin-commonjs": "9.1.0",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-replace": "2.0.0",
"rxjs": "5.5.8",
"rxjs-tslint-rules": "3.15.0",
"tslib": "1.9.0",
"tslint": "5.9.1",
"tslint-react": "3.5.1",
"typescript": "2.8.1",
"uglify-js": "3.3.16"
},
"devDependencies": {
"@types/enzyme": "3.1.9",
"@types/enzyme-adapter-react-16": "1.0.2",
"@types/jest": "22.2.2",
"browser-sync": "2.23.6",
"chokidar": "2.0.3",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"express": "4.16.3",
"jest": "22.4.3",
"morgan": "1.9.0",
"nodemon": "1.17.2",
"onchange": "3.3.0",
"rollup-plugin-sourcemaps": "0.4.2",
"ts-jest": "22.4.2",
"typescript-styled-plugin": "0.6.0"
}
}