-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.27 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.27 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
{
"name": "ts-client-side-template",
"version": "1.0.0",
"description": "TS Client-Side Template",
"main": "index.js",
"scripts": {
"dev": "npm run build && NODE_ENV=development nodemon server",
"build": "webpack --config webpack.config.js",
"test": "./node_modules/.bin/jest"
},
"keywords": [],
"author": "Jared Moore - intelliapps.io",
"license": "ISC",
"dependencies": {
"antd": "^3.8.2",
"express": "^4.16.3",
"mobx": "^5.0.3",
"mobx-react": "^5.2.5",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"typescript": "^3.0.1"
},
"devDependencies": {
"@types/enzyme": "^3.1.13",
"@types/node": "^10.7.1",
"@types/react": "^16.4.11",
"@types/react-dom": "^16.0.7",
"css-loader": "^1.0.0",
"enzyme": "^3.4.4",
"enzyme-adapter-react-16": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.5.0",
"mini-css-extract-plugin": "^0.4.2",
"mobx-react-devtools": "^6.0.3",
"node-sass": "^4.9.3",
"nodemon": "^1.18.3",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.22.1",
"ts-import-plugin": "^1.5.4",
"ts-loader": "^4.5.0",
"ts-node": "^7.0.1",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.1.3"
}
}