-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.47 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
{
"name": "jlpt-simulator",
"version": "1.0.0",
"description": "JLPT test simulator with sample questions",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --config webpack.config.js --mode=development --history-api-fallback",
"build": "NODE_ENV=production webpack --config webpack.config.js --mode=production",
"generateTestBankStatus": "ts-node --skip-project ./scripts/generateTestBankStatus.ts",
"lint": "tslint -c tslint.json --project ./ './src/**/*.ts{,x}' --fix",
"test": "jest --config jest.config.json"
},
"keywords": [
"JLPT"
],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"emotion": "^10.0.7",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1"
},
"homepage": "https://lazurey.github.io/jlpt-simulator/start/",
"devDependencies": {
"@types/html-webpack-plugin": "^3.2.0",
"@types/jest": "^23.3.14",
"@types/react": "^16.8.3",
"@types/react-dom": "^16.8.1",
"@types/react-router-dom": "^4.3.1",
"@types/webpack": "^4.4.24",
"@types/webpack-dev-server": "^3.1.2",
"awesome-typescript-loader": "^5.2.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typescript": "^3.3.3",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
}
}