-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.79 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
{
"scripts": {
"dev": "nodemon src/server/index.ts",
"build": "next build src/client",
"clean": "rm -rf src/client/.next",
"start": "NODE_ENV=production ts-node -r tsconfig-paths/register --compilerOptions '{\"module\":\"commonjs\"}' src/server/index.ts",
"validate": "npm run lint && npm run test",
"lint": "tslint --project tsconfig.json -c tslint.json 'src/**/*.ts*'",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@types/next": "^7.0.7",
"@types/react": "^16.7.22",
"@types/react-dom": "^16.0.11",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-typescript": "^1.1.1",
"autoprefixer": "^9.4.7",
"babel-plugin-module-resolver": "^3.1.3",
"compression": "^1.7.3",
"express": "^4.16.4",
"helmet": "^3.15.0",
"next": "^7.0.2",
"next-redux-wrapper": "^2.0.0",
"node-sass": "^4.11.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.7",
"redux-thunk": "^2.3.0",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.2",
"tsconfig-paths": "^3.7.0",
"typescript": "latest",
"typescript-babel-jest": "^1.0.5"
},
"devDependencies": {
"@types/enzyme": "^3.1.16",
"@types/jest": "^23.3.13",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.0.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"husky": "^1.3.1",
"jest": "^24.0.0",
"nodemon": "^1.18.9",
"prettier": "^1.16.2",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.17.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^3.6.0",
"tslint-react-a11y": "^1.0.0"
}
}