-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.35 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
{
"name": "my-razzle-app",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"start": "razzle start",
"build": "razzle build && cp src/client/service-worker/sw.js build/public",
"test": "jest",
"start:prod": "NODE_ENV=production node build/server.js",
"develop": "yarn build && yarn start"
},
"dependencies": {
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"cuid": "^2.1.0",
"express": "^4.16.2",
"morgan": "^1.9.0",
"nunjucks": "^3.0.1",
"prop-types": "^15.6.0",
"raf": "^3.4.0",
"razzle": "^0.8.11",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-plugin-module-alias": "^1.6.0",
"jest": "^22.2.2",
"module-alias": "^2.0.3"
},
"_moduleAliases": {
"@server": "./dist/server",
"@client": "./dist/client",
"@ui": "./dist/ui"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node",
"moduleDirectories": [
"node_modules"
],
"modulePathIgnorePatterns": [
"<rootDir>/build/"
],
"testMatch": [
"**/?(*.)(spec|test).js?(x)"
],
"moduleFileExtensions": [
"js"
],
"verbose": true,
"setupFiles": [
"<rootDir>/src/test/setupTests.js"
]
}
}