-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·54 lines (54 loc) · 1.56 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
{
"name": "project-starter",
"version": "0.1.0",
"description": "Project Starter",
"author": "Steven Salka <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ssalka/project-starter"
},
"engines": {
"node": "^10.9.0",
"npm": "^6.2.0"
},
"scripts": {
"dev": "NODE_PATH=. nodemon --config config/nodemon.json",
"lint": "tslint -c config/tslint.json -p tsconfig.json -t stylish",
"lint:all": "yarn lint -- 'src/**/*.ts{,x}' 'test/**/*.ts{,x}'",
"start": "NODE_PATH=. ts-node -P config/tsconfig.server.json index",
"test": "NODE_ENV=test NODE_PATH=. jest -c config/jest.json --noStackTrace"
},
"dependencies": {
"bind-decorator": "^1.0.11",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"express": "^4.17.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"ts-node": "^8.2.0"
},
"devDependencies": {
"@types/enzyme": "^3.9.3",
"@types/express": "^4.16.0",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.2",
"@types/react": "^16.8.18",
"@types/react-dom": "^16.8.4",
"copy-webpack-plugin": "^5.0.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.13.2",
"fork-ts-checker-webpack-plugin": "^1.3.4",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.1",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.3.1",
"tslint-loader": "^3.6.0",
"tslint-react": "^4.0.0",
"typescript": "^3.0.1",
"webpack": "^4.16.4",
"webpack-dev-server": "^3.1.5"
}
}