This repository has been archived by the owner on Mar 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.58 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
{
"name": "particleplate",
"version": "0.1.0",
"description": "A TypeScript+React+ReactRouter+Redux+MaterialUI+PostCSS boilerplate",
"main": "api/server.ts",
"scripts": {
"watch": "ts-node watcher.ts",
"build": "ts-node build.ts",
"start": "ts-node api/server.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/handicraftsman/particleplate.git"
},
"keywords": [
"boilerplate",
"typescript",
"react",
"react-router",
"redux",
"material-ui",
"postcss"
],
"author": "Nickolay Ilyushin <nickolay02@inbox.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/handicraftsman/particleplate/issues"
},
"homepage": "https://github.com/handicraftsman/particleplate#readme",
"dependencies": {
"@types/es6-promise": "^3.3.0",
"@types/express": "^4.16.1",
"@types/fs-extra": "^5.0.5",
"express": "^4.16.4",
"fs-extra": "^7.0.1",
"nodemon": "^1.18.11",
"ts-node": "^8.1.0"
},
"devDependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"autoprefixer": "^9.5.1",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^2.1.1",
"postcss-loader": "^3.0.0",
"precss": "^4.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.2",
"react-router-dom": "^5.0.0",
"redux": "^4.0.1",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
}
}