This repository has been archived by the owner on Mar 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
155 lines (155 loc) · 5.17 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "frost-web",
"version": "0.0.1",
"description": "Frost Web is the front-end to Po.et's Frost API for managing accounts and API tokens.",
"scripts": {
"start": "NODE_ENV=development node devServer.js",
"start:production": "NODE_ENV=production node devServer.js",
"build:development": "POET_ENV=development webpack --mode=development",
"build:testing": "POET_ENV=testing webpack --mode=production",
"build:preview": "stylelint './src/**/*.scss' && tslint -p ./tsconfig.json && npm run build:testing",
"build:qa": "POET_ENV=qa webpack --mode=production",
"build:production": "POET_ENV=production webpack --mode=production",
"lint": "tslint -p ./tsconfig.json",
"lint:fix": "tslint -p ./tsconfig.json --fix",
"serve": "ws --spa index.html --rewrite '/api/* -> http://localhost:3000/$1' -d ./dist",
"test": "npm run test:unit",
"test:unit": "ts-node --files -r ignore-styles -r tsconfig-paths/register tests/unit/index.ts",
"test:functional": "testcafe -c ${RUNNER_COUNT:-1} ${RUNNER:-chrome:headless,firefox:headless} tests/functional/features",
"coverage": "nyc --report-dir ./.coverage npm run test:unit",
"stylelint": "stylelint './src/**/*.scss'",
"stylelint:fix": "stylelint './src/**/*.scss' --fix",
"precommit": "lint-staged",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run lint:fix",
"git add"
],
"*.scss": [
"npm run stylelint:fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/poetapp/frost-web.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/poetapp/frost-web/issues"
},
"greenkeeper": {
"ignore": [
"html-webpack-plugin",
"webpack",
"extract-text-webpack-plugin",
"webpack-dev-middleware",
"webpack-dev-server",
"babel-loader",
"sass-loader"
]
},
"dependencies": {
"@paralleldrive/feature-toggles": "1.0.3",
"@paralleldrive/react-feature-toggles": "2.0.2",
"@po.et/frost-client": "2.3.0",
"classnames": "2.2.6",
"clipboard": "2.0.4",
"formdata-polyfill": "3.0.13",
"isomorphic-fetch": "2.2.1",
"moment": "2.23.0",
"prop-types": "15.6.2",
"ramda": "0.26.1",
"react": "16.6.3",
"react-dom": "16.6.3",
"react-progress-bar-plus": "1.3.1",
"react-redux": "5.1.1",
"react-router": "3.2.1",
"react-runkit": "0.9.0",
"react-toastify": "4.4.3",
"redux": "4.0.1",
"redux-devtools": "3.4.2",
"redux-persist": "5.10.0",
"redux-saga": "0.14.8"
},
"devDependencies": {
"@po.et/stylelint-rules": "1.1.5",
"@po.et/tslint-rules": "2.2.0",
"@storybook/addon-actions": "3.4.11",
"@storybook/addon-info": "3.4.11",
"@storybook/addon-knobs": "3.4.11",
"@storybook/addon-links": "3.4.11",
"@storybook/addons": "3.4.11",
"@storybook/react": "3.4.11",
"@types/babel-core": "6.25.5",
"@types/cheerio": "0.22.10",
"@types/classnames": "2.2.6",
"@types/copy-webpack-plugin": "4.4.2",
"@types/express": "4.16.0",
"@types/extract-text-webpack-plugin": "3.0.3",
"@types/html-webpack-plugin": "3.2.0",
"@types/isomorphic-fetch": "0.0.34",
"@types/node-sass": "3.10.32",
"@types/prop-types": "15.5.8",
"@types/ramda": "0.26.0",
"@types/react": "16.7.17",
"@types/react-dom": "16.0.11",
"@types/react-hot-loader": "3.0.6",
"@types/react-redux": "4.4.47",
"@types/react-router": "3.0.19",
"@types/redux-devtools": "3.0.45",
"@types/sinon": "7.0.0",
"@types/storybook__addon-actions": "3.4.1",
"@types/storybook__addon-info": "3.4.2",
"@types/storybook__addon-knobs": "3.4.1",
"@types/storybook__addon-links": "3.3.3",
"@types/storybook__react": "3.0.9",
"@types/webpack": "4.4.21",
"@types/webpack-dev-middleware": "2.0.2",
"@types/webpack-dev-server": "2.9.6",
"@types/webpack-hot-middleware": "2.16.4",
"awesome-typescript-loader": "5.2.1",
"babel-core": "6.26.3",
"babel-loader": "8.0.4",
"cheerio": "1.0.0-rc.2",
"circular-dependency-plugin": "4.4.0",
"copy-webpack-plugin": "4.6.0",
"css-loader": "2.0.1",
"express": "4.16.4",
"express-http-proxy": "1.5.0",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "2.0.0",
"html-webpack-plugin": "3.2.0",
"husky": "1.2.1",
"ignore-styles": "5.0.1",
"json-server": "0.14.0",
"jsonwebtoken": "8.4.0",
"lint-staged": "7.3.0",
"local-web-server": "2.6.0",
"node-sass": "4.11.0",
"nyc": "github:poetapp/nyc#fbc2ed1",
"postcss-loader": "3.0.0",
"react-hot-loader": "3.1.3",
"riteway": "4.0.1",
"sass-loader": "6.0.7",
"sinon": "7.2.2",
"source-map-loader": "0.2.4",
"storybook-addon-jsx": "6.0.0",
"style-loader": "0.23.1",
"stylelint": "9.9.0",
"testcafe": "0.23.2",
"ts-node": "7.0.1",
"tsconfig-paths": "3.7.0",
"tslint": "5.11.0",
"tslint-immutable": "4.9.1",
"typescript": "3.2.2",
"webpack": "4.27.1",
"webpack-cli": "3.1.2",
"webpack-dev-middleware": "3.4.0",
"webpack-dev-server": "3.1.10",
"webpack-hot-middleware": "2.24.3"
}
}